diff --git a/tenet/scheme/amr_master_rule/preprocessing/amr_reification_14.py b/tenet/scheme/amr_master_rule/preprocessing/amr_reification_14.py
index 7fe482bd1aa47b6c109442268b9dec0fe47e1a74..64b3c6ed8f28d1d1f97c9245bb345a253e23afb6 100644
--- a/tenet/scheme/amr_master_rule/preprocessing/amr_reification_14.py
+++ b/tenet/scheme/amr_master_rule/preprocessing/amr_reification_14.py
@@ -24,15 +24,15 @@ from transduction.rdfterm_computer import ( produce_uriref, produce_literal )
 #==============================================================================
 
 def __search_pattern(graph):
-    select_data_list = ['?leaf', '?varLabel', '?valueLabel']
+    select_data_list = ['?leaf', '?varLabel', '?valueLabel', '?valueLeaf']
     clause_list = ['?leaf a amr:AMR_Leaf.',
                    '?leaf amr:hasVariable ?v.',
                    '?leaf amr:hasConcept ?c.',
                    '?v a amr:AMR_Variable.',
                    '?v amr:label ?varLabel.',
                    '?v amr:fromAmrLk ?vLink.',
-                   '?vLink ns2:quant ?vQuant.',
-                   'BIND (REPLACE(?vQuant, " ", "") AS ?valueLabel).'
+                   '?vLink ns2:quant ?valueLeaf.',
+                   'BIND (REPLACE(?valueLeaf, " ", "") AS ?valueLabel).'
                    ]
     query_code = generate_select_query(graph, select_data_list, clause_list)
     result_set = graph.query(query_code)
@@ -89,7 +89,15 @@ def add_amr_edge_for_quant_relation(graph):
     # -- Selection Analyzing
     rule_triple_list = []
     for pattern in pattern_set:
-        rule_triple_list += __add_amr_edge(
-            graph, pattern.leaf, pattern.varLabel, pattern.valueLabel)
+        
+        # case 1: quant relation targeting a number (value)
+        if pattern.valueLabel is not None:
+            rule_triple_list += __add_amr_edge(
+                graph, pattern.leaf, pattern.varLabel, pattern.valueLabel)
+            
+        # case 2: quand relation targeting a concept
+        else: 
+            # TODO: handle the case of a quant relation targeting a concept
+            pass
     
     return rule_label, rule_triple_list
diff --git a/tenet/scheme/owl_amr_scheme_1.py b/tenet/scheme/owl_amr_scheme_1.py
index 50b6a7a15d00701151065b0fd52d02b23c424734..b006946656d5f24fe1bc68350053e71a850c67e7 100644
--- a/tenet/scheme/owl_amr_scheme_1.py
+++ b/tenet/scheme/owl_amr_scheme_1.py
@@ -151,156 +151,3 @@ scheme = {
     }
 
 
-#!/usr/bin/python3.10
-# -*-coding:Utf-8 -*
-
-#==============================================================================
-# TENET: Composition Transduction Scheme for AMR analysis
-#------------------------------------------------------------------------------
-# Composition Transduction Scheme (CTS) using CTR (rules) for analysis of AMR 
-# structure.
-#==============================================================================
-
-import scheme.amr_master_rule as rule
-
-#==============================================================================
-# Rule Directory
-#==============================================================================
-
-rule_dir = 'amr_master_rule/'
-
-
-#==============================================================================
-# Prefix using in CTR
-#==============================================================================
-
-prefix_list = [('owl', '<http://www.w3.org/2002/07/owl#>'),
-               ('odrl', '<http://www.w3.org/ns/odrl/2/>'),
-               ('cc', '<https://creativecommons.org/ns#>'),
-               ('rdf', '<http://www.w3.org/1999/02/22-rdf-syntax-ns#>'),
-               ('rdfs', '<http://www.w3.org/2000/01/rdf-schema#>'),
-               ('xsd', '<http://www.w3.org/2001/XMLSchema#>'),
-               ('amr', '<https://amr.tetras-libre.fr/rdf/schema#>'),
-               ('ns1', '<http://amr.isi.edu/frames/ld/v1.2.2/>'),
-               ('ns2', '<http://amr.isi.edu/rdf/amr-terms#>'),
-               ('ns3', '<http://amr.isi.edu/rdf/core-amr#>'),
-               ('ns4', '<http://amr.isi.edu/entity-types#>'),
-               ('net', '<https://tenet.tetras-libre.fr/semantic-net#>'),
-               ('cprm', '<https://tenet.tetras-libre.fr/config/parameters#>'),
-               ('fprm', '<https://tenet.tetras-libre.fr/frame/parameters#>'),
-               ('base-out', '<https://tenet.tetras-libre.fr/base-ontology#>'),
-               ('ext-out', '<https://tenet.tetras-libre.fr/extract-result#>')]
-
-
-#==============================================================================
-# Sequences
-#==============================================================================
-
-# ---------------------------------------------
-# Preprocessing Sequence(s)
-# ---------------------------------------------
-
-amr_bug_fixing_sequence = ['Bug fixing for some known anomalies of AMR-LD data',
-                           rule.fix_amr_bug_1
-                           ]
-
-amr_reification_sequence = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure',
-                            rule.reclassify_concept_1,
-                            rule.reclassify_concept_2,
-                            rule.reclassify_concept_3,
-                            rule.reclassify_concept_4,
-                            rule.reclassify_concept_5,
-                            rule.reify_roles_as_concept,
-                            rule.reclassify_existing_variable,
-                            rule.add_new_variable_for_reified_concept,
-                            rule.add_amr_leaf_for_reclassified_concept,
-                            rule.add_amr_leaf_for_reified_concept,
-                            rule.add_amr_edge_for_core_relation,
-                            rule.add_amr_edge_for_reified_concept,
-                            rule.add_amr_edge_for_name_relation,
-                            rule.add_amr_edge_for_quant_relation,
-                            rule.add_amr_edge_for_polarity_relation,
-                            rule.update_amr_edge_role_1,
-                            rule.add_amr_root
-                            ]
-
-# ---------------------------------------------
-# Transduction Sequences
-# ---------------------------------------------
-
-atomic_extraction_sequence = ['atomic extraction sequence',
-                              rule.extract_atom_class,
-                              rule.extract_atom_individual,
-                              rule.extract_atom_property,
-                              rule.extract_atom_value,
-                              rule.extract_atom_phenomena,
-                              rule.propagate_atom_relation]
-
-classification_sequence_1 = ['classification sequence (1)',
-                             rule.classify_modality_phenomena,
-                             rule.reclassify_argument_property_to_class
-                             ]
-
-phenomena_analyze_sequence_1 = ['phenomena analyze sequence (1)',
-                                rule.analyze_phenomena_polarity_1,
-                                rule.analyze_phenomena_polarity_2,
-                                rule.analyze_phenomena_polarity_3,
-                                rule.analyze_phenomena_polarity_4,
-                                rule.analyze_phenomena_polarity_5,
-                                rule.analyze_phenomena_mod_1,
-                                rule.classify_modality_phenomena
-                                ]
-
-phenomena_analyze_sequence_2 = ['phenomena analyze sequence (2)',
-                                rule.analyze_phenomena_or_1,
-                                rule.analyze_phenomena_or_2,
-                                rule.analyze_phenomena_and_1,
-                                rule.analyze_phenomena_and_2]
-
-composite_class_extraction_sequence = ['composite class extraction sequence',
-                                       rule.extract_composite_class_1,
-                                       rule.extract_composite_class_2]
-
-classification_sequence_2 = ['classification sequence (2)',
-                             rule.classify_entity_from_core_arguments,
-                             rule.classify_entity_from_part_relation,
-                             rule.classify_entity_from_degree_arguments,
-                             rule.classify_mother_from_domain_relation,
-                             rule.propagate_individual_1,
-                             rule.propagate_individual_2
-                             ]
-
-
-# # ---------------------------------------------
-# # OWL Generation
-# # ---------------------------------------------
-
-owl_generation_sequence = ['OWL Generation Sequence',
-                           rule.generate_owl_class,
-                           rule.generate_owl_property,
-                           rule.generate_owl_individual
-                           ]
-
-
-
-#==============================================================================
-# Transduction Scheme
-#==============================================================================
-
-scheme = {
-    
-    'Preprocessing': [amr_bug_fixing_sequence,
-                      amr_reification_sequence],
-    
-    'Transduction': [atomic_extraction_sequence,
-                     classification_sequence_1,
-                     phenomena_analyze_sequence_1,
-                     phenomena_analyze_sequence_2,
-                     composite_class_extraction_sequence,
-                     classification_sequence_2],
-    
-    'Generation': [owl_generation_sequence]
-    
-    }
-
-
diff --git a/tests/dev_owl_rule_tests/test_data/atom-extraction-devGraph-1.result.ttl b/tests/dev_owl_rule_tests/test_data/atom-extraction-devGraph-1.result.ttl
index ac4a1bac7ee2b177a3f8231c3a501ba3f5811552..df7683159e4c1d0ece21ba21fc369b6925b51c7f 100644
--- a/tests/dev_owl_rule_tests/test_data/atom-extraction-devGraph-1.result.ttl
+++ b/tests/dev_owl_rule_tests/test_data/atom-extraction-devGraph-1.result.ttl
@@ -1,4 +1,3 @@
-@base <https://amr.tetras-libre.fr/rdf/atom-extraction-devGraph-1/result> .
 @prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
 @prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
 @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
@@ -22,16 +21,6 @@ ns2:Role a rdfs:Class,
     rdfs:label "AMR-Role" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<amr_concept_and> rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns2:and ;
-    :hasPhenomenaLink :phenomena_conjunction_and ;
-    :label "and" .
-
-<amr_concept_or> rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns2:or ;
-    :hasPhenomenaLink :phenomena_conjunction_or ;
-    :label "or" .
-
 <http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
     ns2:hasSentence "The sun is a star." ;
     ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
@@ -774,6 +763,16 @@ ns2:AMR a owl:Class ;
     :hasConcept :concept_system ;
     :hasVariable :variable_p .
 
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
 :role_domain a owl:Class ;
     rdfs:subClassOf :AMR_NonCore_Role ;
     :hasRelationName "domain" ;
@@ -939,9 +938,18 @@ ns2:NamedEntity a ns2:Concept,
         "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:or a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_Phenomena a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
 :AMR_Value a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
@@ -972,16 +980,6 @@ ns2:NamedEntity a ns2:Concept,
         "neither" ;
     :label "conjunction" .
 
-:phenomena_conjunction_and a owl:Class ;
-    rdfs:subClassOf :phenomena_conjunction ;
-    :hasConceptLink "and" ;
-    :label "conjunction-AND" .
-
-:phenomena_conjunction_or a owl:Class ;
-    rdfs:subClassOf :phenomena_conjunction ;
-    :hasConceptLink "or" ;
-    :label "conjunction-OR" .
-
 :role_op1 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op1" .
@@ -1021,12 +1019,6 @@ ns2:Frame a ns2:Concept,
     rdfs:label "AMR-PropBank-Frame" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:and a ns2:Concept ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
-ns2:or a ns2:Concept ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_Concept a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
@@ -1068,9 +1060,6 @@ ns3:FrameRole a ns2:Role,
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Term_Concept a owl:Class ;
     rdfs:subClassOf :AMR_Concept .
 
diff --git a/tests/dev_owl_rule_tests/test_data/testGraph-quant-preprocessing.result.ttl b/tests/dev_owl_rule_tests/test_data/testGraph-quant-preprocessing.result.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..e77d65bc1da9e9ff4bcb87d0bbfe667b2ecc361b
--- /dev/null
+++ b/tests/dev_owl_rule_tests/test_data/testGraph-quant-preprocessing.result.ttl
@@ -0,0 +1,1280 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns4: <http://amr.isi.edu/entity-types#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns11:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#root01> a ns11:AMR ;
+    ns11:has-id "SSC-03-01" ;
+    ns11:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns11:root <http://amr.isi.edu/amr_data/SSC-03-01#a> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns11:hasID "test-1" ;
+    ns11:hasSentence "The sun is a star." ;
+    ns11:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns11:hasID "test-2" ;
+    ns11:hasSentence "Earth is a planet." ;
+    ns11:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:direct-02.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG2 a ns3:FrameRole .
+
+ns3:equal-01.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG4 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:mean-01.ARG1 a ns3:FrameRole .
+
+ns3:mean-01.ARG2 a ns3:FrameRole .
+
+ns3:natural-03.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns11:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns11:Role .
+
+ns2:op2 a ns11:Role .
+
+ns2:quant a ns11:Role .
+
+ns11:hasID a owl:AnnotationProperty .
+
+ns11:hasSentence a owl:AnnotationProperty .
+
+ns11:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_e a :AMR_Edge ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#d> a ns3:direct-02 ;
+    ns3:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m> a ns3:mean-01 ;
+    ns3:mean-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:mean-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#n> a ns3:natural-03 ;
+    ns3:natural-03.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns11:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:NamedEntity a ns11:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns4:planet ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a> a ns11:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#e> a ns3:equal-01 ;
+    ns3:equal-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    ns3:equal-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:equal-01.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    ns3:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m2> a ns11:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m3> a ns11:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m4> a ns11:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o3> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns4:planet a ns11:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns11:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:equal-01 a ns11:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns11:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mean-01 a ns11:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:natural-03 a ns11:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns11:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:and a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:most a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns11:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:more a ns11:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#p> a ns4:planet ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns11:Frame a ns11:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns3:FrameRole a ns11:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/dev_owl_rule_tests/test_data/testGraph-quant-preprocessing.ttl b/tests/dev_owl_rule_tests/test_data/testGraph-quant-preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..c852a855782dcc13a71162f99d8321561c16c536
--- /dev/null
+++ b/tests/dev_owl_rule_tests/test_data/testGraph-quant-preprocessing.ttl
@@ -0,0 +1,1272 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#root01> a ns1:AMR ;
+    ns1:has-id "SSC-03-01" ;
+    ns1:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns1:root <http://amr.isi.edu/amr_data/SSC-03-01#a> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:direct-02.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG2 a ns3:FrameRole .
+
+ns3:equal-01.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG4 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:mean-01.ARG1 a ns3:FrameRole .
+
+ns3:mean-01.ARG2 a ns3:FrameRole .
+
+ns3:natural-03.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_e a :AMR_Edge ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#d> a ns3:direct-02 ;
+    ns3:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m> a ns3:mean-01 ;
+    ns3:mean-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:mean-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#n> a ns3:natural-03 ;
+    ns3:natural-03.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#e> a ns3:equal-01 ;
+    ns3:equal-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    ns3:equal-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:equal-01.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    ns3:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m2> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m3> a ns1:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m4> a ns1:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o3> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:equal-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mean-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:natural-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:most a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/dev_owl_rule_tests/test_rule_reification.py b/tests/dev_owl_rule_tests/test_rule_reification.py
index e0dd7ca11f36124f08a34f2413f503e9c4e7965b..47339a5efea608484c0a9632b45664ae57a63204 100644
--- a/tests/dev_owl_rule_tests/test_rule_reification.py
+++ b/tests/dev_owl_rule_tests/test_rule_reification.py
@@ -17,11 +17,11 @@ INPUT_DIR_PATH = f'{FILE_PATH}/test_data/'
 OUTPUT_DIR_PATH = f'{FILE_PATH}/test_data/'
 
 TEST_FILE_NAME_1 = 'atom-extraction-devGraph-1'
-TEST_FILE_NAME_2 = 'atom-extraction-devGraph-2'
-TEST_FILE_NAME_3 = 'atom-extraction-devGraph-3'
+TEST_FILE_NAME_2 = 'testGraph-quant-preprocessing'
 
 from context import tenet
 from scheme.amr_master_rule.preprocessing import amr_reification_1 as test_rule_1
+from scheme.amr_master_rule.preprocessing import amr_reification_14 as test_rule_14
 from tenet.scheme import amr_master_rule
 
 from tenet.transduction.rdfterm_computer import __update_uri_with_prefix
@@ -94,7 +94,19 @@ def test_search_pattern_1(graph):
         result_str += f' | {row.label_2.n3(graph.namespace_manager)}'
         print(result_str) 
     return pattern_set
+        
 
+def test_search_pattern_14(graph):
+    _, pattern_set = test_rule_14.__search_pattern(graph)
+    print(f'\n ----- number of selection found: {len(pattern_set)}')
+    for row in pattern_set: 
+        result_str = f'>>> '
+        result_str += f'{row.leaf.n3(graph.namespace_manager)}'
+        result_str += f' | {row.varLabel}'
+        result_str += f' | {row.valueLabel}'
+        result_str += f' | {row.valueLeaf}'
+        print(result_str) 
+    return pattern_set
     
 
 #==============================================================================
@@ -120,10 +132,9 @@ if __name__ == '__main__':
     print('\n *** Test Preparation ***')
     graph_1 = load_test_graph(TEST_FILE_NAME_1)
     graph_2 = load_test_graph(TEST_FILE_NAME_2)
-    graph_3 = load_test_graph(TEST_FILE_NAME_3)
     print('\n \n')
     
-    print('\n ///////////////////// Extraction Rule 1')
+    print('\n ///////////////////// Reclassify Concept 1')
     
     print('\n *** Step Test ***')
     print('\n -- Step 1: Search Pattern')
@@ -133,5 +144,16 @@ if __name__ == '__main__':
     print('\n *** Unit Test ***')
     test_rule_application(TEST_FILE_NAME_1, graph_1, test_rule_1.reclassify_concept_1)
     print('\n \n')
+    
+    print('\n ///////////////////// Add AMR Edge for Quant Relation')
+    
+    print('\n *** Step Test ***')
+    print('\n -- Step 1: Search Pattern')
+    pattern_set = test_search_pattern_14(graph_2)
+    print('\n \n')
+    
+    print('\n *** Unit Test ***')
+    test_rule_application(TEST_FILE_NAME_2, graph_2, test_rule_14.add_amr_edge_for_quant_relation)
+    print('\n \n')
 
     print('\n *** - ***')
\ No newline at end of file
diff --git a/tests/main_tests/test_main_owl_extraction.py b/tests/main_tests/test_main_owl_extraction.py
index 9a32ea7b050852683466e7ec34d70f676eaa1279..04ee5678841792669ddf34eac82eb7780c40a9ad 100644
--- a/tests/main_tests/test_main_owl_extraction.py
+++ b/tests/main_tests/test_main_owl_extraction.py
@@ -56,7 +56,7 @@ test_data_dir = f'{INPUT_DIR_PATH}amrDocuments/'
 # onto_prefix = f'SimpleTest'
 # base_output_name = f'SimpleTest'
 
-# uuid_num = '01'
+# uuid_num = '03'
 # amrld_dir_path = f'{test_data_dir}dev/solar-system-{uuid_num}/'
 # amrld_file_path = f'{amrld_dir_path}SSC-{uuid_num}-01.stog.amr.ttl'
 # base_output_name = f'SolarSystemDev{uuid_num}'
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/SolarSystemDev02_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/SolarSystemDev02_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..d09557edcb6a0ee52afef4adfa8d2486cde6fe79
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/SolarSystemDev02_factoid.ttl
@@ -0,0 +1,87 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#small> ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.log b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.log
new file mode 100644
index 0000000000000000000000000000000000000000..ca86ce098e849d4c3a208b8e9f8b687967506a40
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.log
@@ -0,0 +1,165 @@
+- INFO - [TENET] Extraction Processing
+- INFO - 
+ === Process Initialization === 
+- INFO - -- Process Setting 
+- INFO - ----- Corpus source: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-02/ (amr)
+- INFO - ----- Base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731
+- INFO - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/
+- INFO - ----- Ontology target (id): https://tenet.tetras-libre.fr/demo/02/
+- INFO - ----- Current path: /home/lamenji/Workspace/Tetras/tenet/tenet
+- DEBUG - ----- Config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml
+- DEBUG - 
+  ***  Config (Full Parameters) *** 
+  -- Base Parameters
+  ----- config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml
+  ----- uuid: https://tenet.tetras-libre.fr/demo/02/
+  ----- technical base name: tenet.tetras-libre.fr_demo_02
+  ----- source corpus: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-02/
+  ----- target reference: base
+  ----- process level: sentence
+  ----- source type: amr
+  ----- extraction scheme: owl_amr_scheme_1
+  -- Directories
+  ----- base directory: ./
+  ----- structure directory: ./structure/
+  ----- CTS directory: ./scheme/
+  ----- target frame directory: ./../input/targetFrameStructure/
+  ----- input document directory: 
+  ----- base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731
+  ----- output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/tenet.tetras-libre.fr_demo_02-20230731/
+  ----- sentence output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/
+  ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/
+  -- Config File Definition
+  ----- schema file: ./structure/amr-rdf-schema.ttl
+  ----- semantic net file: ./structure/owl-snet-schema.ttl
+  ----- config param file: ./structure/config-parameters.ttl
+  ----- base ontology file: ./structure/base-ontology.ttl
+  ----- CTS file: ./scheme/owl_amr_scheme_1.py
+  -- Useful References for Ontology
+  ----- base URI: https://tenet.tetras-libre.fr/working
+  ----- ontology suffix: -ontology.ttl
+  ----- ontology seed suffix: -ontology-seed.ttl
+  -- Source File Definition
+  ----- source sentence file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-02/**/*.ttl
+  -- Target File Definition
+  ----- frame ontology file: ./../input/targetFrameStructure/base-ontology.ttl
+  ----- frame ontology seed file: ./../input/targetFrameStructure/base-ontology-seed.ttl
+  -- Output
+  ----- ontology namespace: https://tenet.tetras-libre.fr/base-ontology/
+  ----- output file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02.ttl
+  *** - *** 
+- DEBUG - -- Counting number of graph files (sentences) 
+- INFO - ----- Number of Graphs: 1
+- INFO - 
+ === Extraction Processing === 
+- INFO - Single-Processing Run 
+- INFO - 
+ [P-1]     *** extraction from sentence 1 *** 
+- INFO -  [P-1] -- Work Structure Preparation
+- DEBUG -  [P-1] --- Graph Initialization
+- DEBUG -  [P-1] ----- Configuration Loading
+- DEBUG -  [P-1] -------- RDF Schema (320)
+- DEBUG -  [P-1] -------- Semantic Net Definition (486)
+- DEBUG -  [P-1] -------- Config Parameter Definition (520)
+- DEBUG -  [P-1] ----- Frame Ontology Loading
+- DEBUG -  [P-1] -------- Base Ontology produced as output (550)
+- DEBUG -  [P-1] --- Source Data Import
+- DEBUG -  [P-1] ----- Sentence Loading
+- DEBUG -  [P-1] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-02/SSC-02-01.stog.amr.ttl (625)
+- DEBUG -  [P-1] --- Export work graph as turtle
+- DEBUG -  [P-1] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02.ttl 
+- INFO -  [P-1] ----- Sentence (id): SSC-02-01
+- INFO -  [P-1] ----- Sentence (text): Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies.
+- INFO -  [P-1] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-1] ----- Step number: 3
+- INFO -  [P-1] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-1] ----- Total rule number: 0
+- INFO -  [P-1] -- Step 1: Preprocessing
+- INFO -  [P-1] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-1] ----- fix AMR bug (1): 0/0 new triple (625, 0:00:00.019451)
+- INFO -  [P-1] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-1] ----- reclassify AMR-LD concept (1): 10/10 new triples (635, 0:00:00.098740)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (2): 8/8 new triples (643, 0:00:00.045414)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (3): 12/12 new triples (655, 0:00:00.033267)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (4): 28/28 new triples (683, 0:00:00.049468)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (5): 4/4 new triples (687, 0:00:00.030240)
+- INFO -  [P-1] ----- reify roles as concept: 5/5 new triples (692, 0:00:00.046128)
+- INFO -  [P-1] ----- reclassify existing variable: 81/81 new triples (773, 0:00:00.024410)
+- INFO -  [P-1] ----- add new variable for reified concept: 4/4 new triples (777, 0:00:00.058967)
+- INFO -  [P-1] ----- add AMR leaf for reclassified concept: 60/60 new triples (837, 0:00:00.035039)
+- INFO -  [P-1] ----- add AMR leaf for reified concept: 4/4 new triples (841, 0:00:00.013011)
+- INFO -  [P-1] ----- add AMR edge for core relation: 54/54 new triples (895, 0:00:00.142218)
+- INFO -  [P-1] ----- add AMR edge for reified concept: 6/6 new triples (901, 0:00:00.095913)
+- INFO -  [P-1] ----- add AMR edge for name relation: 5/5 new triples (906, 0:00:00.023595)
+- INFO -  [P-1] ----- add AMR edge for quant relation: 5/5 new triples (911, 0:00:00.027411)
+- DEBUG -  [P-1] ----- add AMR edge for polarity relation: 0/0 new triple (911, 0:00:00.034231)
+- INFO -  [P-1] ----- update AMR edge role 1: 22/22 new triples (933, 0:00:00.098330)
+- INFO -  [P-1] ----- add AMR root: 5/5 new triples (938, 0:00:00.010453)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_02_Preprocessing 
+- DEBUG -  [P-1] ----- step: Preprocessing
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/02/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Preprocessing.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/02//Preprocessing
+- INFO -  [P-1] -- Step 2: Transduction
+- INFO -  [P-1] --- Sequence: atomic extraction sequence
+- INFO -  [P-1] ----- extract atom classes: 66/66 new triples (1004, 0:00:00.437697)
+- INFO -  [P-1] ----- extract atom individuals: 8/8 new triples (1012, 0:00:00.047947)
+- INFO -  [P-1] ----- extract atomic properties: 72/72 new triples (1084, 0:00:00.206242)
+- INFO -  [P-1] ----- extract atom values: 10/10 new triples (1094, 0:00:00.052838)
+- INFO -  [P-1] ----- extract atom phenomena: 28/28 new triples (1122, 0:00:00.188134)
+- INFO -  [P-1] ----- propagate atom relations: 35/96 new triples (1157, 0:00:01.538150)
+- INFO -  [P-1] --- Sequence: classification sequence (1)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (1157, 0:00:00.019835)
+- INFO -  [P-1] ----- reclassify argument property to class: 11/14 new triples (1168, 0:00:00.069218)
+- INFO -  [P-1] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (1): 0/0 new triple (1168, 0:00:00.007294)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (2): 0/0 new triple (1168, 0:00:00.016873)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (3): 0/0 new triple (1168, 0:00:00.016023)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (4): 0/0 new triple (1168, 0:00:00.038800)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (5): 0/0 new triple (1168, 0:00:00.036309)
+- INFO -  [P-1] ----- analyze modifier phenomena (mod): 43/50 new triples (1211, 0:00:00.176297)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (1211, 0:00:00.020851)
+- INFO -  [P-1] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-1] ----- analyze "or" phenomena (1): 0/0 new triple (1211, 0:00:00.011476)
+- DEBUG -  [P-1] ----- analyze "or" phenomena (2): 0/0 new triple (1211, 0:00:00.011954)
+- INFO -  [P-1] ----- analyze "and" phenomena (1): 5/50 new triples (1216, 0:00:00.145590)
+- DEBUG -  [P-1] ----- analyze "and" phenomena (2): 0/0 new triple (1216, 0:00:00.013342)
+- INFO -  [P-1] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-1] ----- extract composite classes (1): 0/0 new triple (1216, 0:00:00.032120)
+- DEBUG -  [P-1] ----- extract composite classes (2): 0/0 new triple (1216, 0:00:00.032710)
+- INFO -  [P-1] --- Sequence: classification sequence (2)
+- INFO -  [P-1] ----- classify class net as entity from core arguments: 24/132 new triples (1240, 0:00:00.301972)
+- DEBUG -  [P-1] ----- classify class net as entity from :part relation: 0/0 new triple (1240, 0:00:00.009050)
+- DEBUG -  [P-1] ----- classify class net as entity from degree arguments: 0/0 new triple (1240, 0:00:00.017743)
+- DEBUG -  [P-1] ----- Associate mother to class net from :domain relation: 0/0 new triple (1240, 0:00:00.009212)
+- DEBUG -  [P-1] ----- Propagate individuals to net with same base node: 0/16 new triple (1240, 0:00:00.076940)
+- DEBUG -  [P-1] ----- Propagate individuals to net with domain link: 0/0 new triple (1240, 0:00:00.008244)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_02_Transduction 
+- DEBUG -  [P-1] ----- step: Transduction
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/02/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Transduction.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/02//Transduction
+- INFO -  [P-1] -- Step 3: Generation
+- INFO -  [P-1] --- Sequence: OWL Generation Sequence
+- INFO -  [P-1] ----- generate OWL class: 39/50 new triples (1279, 0:00:00.428286)
+- INFO -  [P-1] ----- generate OWL property: 20/20 new triples (1299, 0:00:00.168243)
+- INFO -  [P-1] ----- generate OWL individual: 8/12 new triples (1307, 0:00:00.152646)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_02_Generation 
+- DEBUG -  [P-1] ----- step: Generation
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/02/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Generation.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/02//Generation
+- DEBUG -  [P-1] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_factoid.ttl)
+- DEBUG -  [P-1] ----- Number of factoids: 82
+- DEBUG -  [P-1] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/02//factoid
+- INFO -  [P-1] Success (82 extracted triple(s))
+- INFO - 
+ === Final Ontology Generation  === 
+- INFO - -- Making complete factoid graph by merging the result factoids
+- INFO - ----- Total factoid number: 82
+- INFO - -- Serializing graph to factoid string
+- INFO - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/02//factoid
+- INFO - -- Serializing graph to factoid file
+- INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/SolarSystemDev02_factoid.ttl
+- INFO - 
+ === Done === 
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02.ttl b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..3385a5e2d2b182276a257e71315950e68fa64c3d
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02.ttl
@@ -0,0 +1,878 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#o2> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-02-01#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-02-01#m2> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#root01> a ns3:AMR ;
+    ns3:has-id "SSC-02-01" ;
+    ns3:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
+    ns3:root <http://amr.isi.edu/amr_data/SSC-02-01#a> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s4> a ns2:system ;
+    rdfs:label "Solar System" ;
+    ns2:part <http://amr.isi.edu/amr_data/SSC-02-01#b> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG5 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:op3 a ns3:Role .
+
+ns2:part a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-02-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-02-01#r> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-02-01#p2> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/SSC-02-01#b> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#d2> a ns2:dwarf .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-02-01#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-02-01#m> ;
+    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/SSC-02-01#o> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#l> a ns2:large .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#m> a ns3:most .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#m2> a ns3:more .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#s> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "8" .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/SSC-02-01#d2> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#a2> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s> a ns2:sun .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s2> a ns2:small .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s3> a ns2:small .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns11:direct-02 a ns3:Frame .
+
+ns11:orbit-01 a ns3:Frame .
+
+ns11:remain-01 a ns3:Frame .
+
+ns2:body a ns3:Concept .
+
+ns2:dwarf a ns3:Concept .
+
+ns2:large a ns3:Concept .
+
+ns2:sun a ns3:Concept .
+
+ns2:system a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept .
+
+ns3:most a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#b> a ns2:body ;
+    ns2:mod <http://amr.isi.edu/amr_data/SSC-02-01#s3> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o> a ns2:object .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o3> a ns2:object .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity .
+
+ns11:have-degree-91 a ns3:Frame .
+
+ns2:object a ns3:Concept .
+
+ns2:small a ns3:Concept .
+
+ns3:and a ns3:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..1f1aa2ea972bbf153310f1f00622cbd163391e14
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Generation.ttl
@@ -0,0 +1,1688 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG5 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:op3 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_s3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_d_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG5 ;
+    :hasRoleID "ARG5" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p2_d2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p9_ARG0_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_quant_8 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_r_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s4_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_SSC-02-01 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "SSC-02-01" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o2 .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s4,
+        net:individual_SolarSystem_s4 ;
+    :role_ARG1 net:atomClass_body_b,
+        net:compositeClass_small-body_b ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_body_b,
+        :leaf_system_s4 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d2 ;
+    net:coverBaseNode :leaf_dwarf_d2 ;
+    net:coverNode :leaf_dwarf_d2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d2 ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "unknown" .
+
+net:individual_small_s3 a net:Individual_Net ;
+    net:composeFrom net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "small" ;
+    net:hasMotherClassNet net:atomClass_small_s3 ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_remain_r ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-02-01#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-02-01#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#root01> a ns3:AMR ;
+    ns3:has-id "SSC-02-01" ;
+    ns3:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
+    ns3:root <http://amr.isi.edu/amr_data/SSC-02-01#a> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s4> a ns2:system ;
+    rdfs:label "Solar System" ;
+    ns2:part <http://amr.isi.edu/amr_data/SSC-02-01#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:body ;
+    :label "body" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:role_ARG5 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#d2> ;
+    :label "d2" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#p2> ;
+    :label "p2" .
+
+:variable_p9 a ns2:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s4> ;
+    :label "s4" ;
+    :name "Solar System" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#small> ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Entity,
+        sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:value_8_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_remain_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_body_b,
+        net:atomClass_object_o3,
+        net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2,
+        net:compositeClass_small-body_b,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_remain-01_r ;
+    net:coverNode :leaf_remain-01_r ;
+    net:hasNaming "remain" ;
+    net:hasPropertyName "remain" ;
+    net:hasPropertyName01 "remaining" ;
+    net:hasPropertyName10 "remain-by" ;
+    net:hasPropertyName12 "remain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s4 a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s4 ;
+    net:coverNode :leaf_system_s4 ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s4 ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_object_o3 ;
+    :role_op2 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    :role_op3 net:atomClass_body_b,
+        net:compositeClass_small-body_b ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m ;
+    :role_ARG5 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:value_8_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_8 ;
+    net:hasNaming "8" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "8" .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-02-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-02-01#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-02-01#p2> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/SSC-02-01#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#d2> a ns2:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-02-01#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-02-01#m> ;
+    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#m2> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "8" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/SSC-02-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:body a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:dwarf a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:part a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s4 :leaf_system_s4 ;
+    :edge_p9_ARG1_b :leaf_body_b ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m2 :leaf_more_m2 ;
+    :edge_h2_o3 :leaf_object_o3 ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_8 a :AMR_Value ;
+    rdfs:label "8" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_system_s4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s4 ;
+    net:coverNode :leaf_system_s4 ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s .
+
+net:compositeClass_dwarf-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d2 ;
+    net:composeFrom net:atomClass_dwarf_d2,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d2,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "unknown" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#b> a ns2:body ;
+    ns2:mod <http://amr.isi.edu/amr_data/SSC-02-01#s3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o3> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :edge_a_r :leaf_remain-01_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m :leaf_most_m ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_8 :value_8 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_a2 :leaf_and_a2 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_small-body_b a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_small_s3 ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_small_s3 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "small-body" ;
+    net:hasStructure "unknown" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_o3 :leaf_object_o3 ;
+    :edge_a2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d2 :leaf_dwarf_d2 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_dwarf_d2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d2 ;
+    net:coverNode :leaf_dwarf_d2 ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Structure a owl:Class .
+
+:leaf_dwarf_d2 a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d2 .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_system_s4 a :AMR_Leaf ;
+    :edge_s4_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s4 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_s3 :leaf_small_s3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..b8503baeeae65f1b83dd17fd8d9036fcc08a2071
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Preprocessing.ttl
@@ -0,0 +1,1274 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG5 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:op3 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_s3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_d_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG5 ;
+    :hasRoleID "ARG5" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p2_d2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p9_ARG0_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_quant_8 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_r_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s4_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s4 :leaf_system_s4 ;
+    :edge_p9_ARG1_b :leaf_body_b ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m2 :leaf_more_m2 ;
+    :edge_h2_o3 :leaf_object_o3 ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_SSC-02-01 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "SSC-02-01" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-02-01#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-02-01#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#root01> a ns3:AMR ;
+    ns3:has-id "SSC-02-01" ;
+    ns3:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
+    ns3:root <http://amr.isi.edu/amr_data/SSC-02-01#a> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s4> a ns2:system ;
+    rdfs:label "Solar System" ;
+    ns2:part <http://amr.isi.edu/amr_data/SSC-02-01#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:body ;
+    :label "body" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :edge_a_r :leaf_remain-01_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_o3 :leaf_object_o3 ;
+    :edge_a2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_dwarf_d2 a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d2 .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m :leaf_most_m ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_8 :value_8 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d2 :leaf_dwarf_d2 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_a2 :leaf_and_a2 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:leaf_system_s4 a :AMR_Leaf ;
+    :edge_s4_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s4 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_8 a :AMR_Value ;
+    rdfs:label "8" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#d2> ;
+    :label "d2" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#p2> ;
+    :label "p2" .
+
+:variable_p9 a ns2:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s4> ;
+    :label "s4" ;
+    :name "Solar System" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-02-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-02-01#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-02-01#p2> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/SSC-02-01#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#d2> a ns2:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-02-01#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-02-01#m> ;
+    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#m2> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "8" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/SSC-02-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:body a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:dwarf a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:part a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_s3 :leaf_small_s3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#b> a ns2:body ;
+    ns2:mod <http://amr.isi.edu/amr_data/SSC-02-01#s3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o3> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Structure a owl:Class .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..eedb6aba45b71ef433b5e1f981d4feeccdd9010d
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_Transduction.ttl
@@ -0,0 +1,1605 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG5 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:op3 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_s3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_d_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG5 ;
+    :hasRoleID "ARG5" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p2_d2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p9_ARG0_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_quant_8 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_r_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s4_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_SSC-02-01 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "SSC-02-01" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o2 .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s4,
+        net:individual_SolarSystem_s4 ;
+    :role_ARG1 net:atomClass_body_b,
+        net:compositeClass_small-body_b ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_body_b,
+        :leaf_system_s4 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d2 ;
+    net:coverBaseNode :leaf_dwarf_d2 ;
+    net:coverNode :leaf_dwarf_d2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d2 ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "unknown" .
+
+net:individual_small_s3 a net:Individual_Net ;
+    net:composeFrom net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "small" ;
+    net:hasMotherClassNet net:atomClass_small_s3 ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_remain_r ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-02-01#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-02-01#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#root01> a ns3:AMR ;
+    ns3:has-id "SSC-02-01" ;
+    ns3:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
+    ns3:root <http://amr.isi.edu/amr_data/SSC-02-01#a> .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s4> a ns2:system ;
+    rdfs:label "Solar System" ;
+    ns2:part <http://amr.isi.edu/amr_data/SSC-02-01#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:body ;
+    :label "body" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:role_ARG5 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#d2> ;
+    :label "d2" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#p2> ;
+    :label "p2" .
+
+:variable_p9 a ns2:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-02-01#s4> ;
+    :label "s4" ;
+    :name "Solar System" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:value_8_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_remain_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_body_b,
+        net:atomClass_object_o3,
+        net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2,
+        net:compositeClass_small-body_b,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_remain-01_r ;
+    net:coverNode :leaf_remain-01_r ;
+    net:hasNaming "remain" ;
+    net:hasPropertyName "remain" ;
+    net:hasPropertyName01 "remaining" ;
+    net:hasPropertyName10 "remain-by" ;
+    net:hasPropertyName12 "remain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s4 a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s4 ;
+    net:coverNode :leaf_system_s4 ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s4 ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_object_o3 ;
+    :role_op2 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    :role_op3 net:atomClass_body_b,
+        net:compositeClass_small-body_b ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m ;
+    :role_ARG5 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:value_8_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_8 ;
+    net:hasNaming "8" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "8" .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-02-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-02-01#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-02-01#o3> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-02-01#p2> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/SSC-02-01#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#d2> a ns2:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-02-01#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-02-01#m> ;
+    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#m2> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-02-01#o> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "8" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/SSC-02-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/SSC-02-01#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:body a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:dwarf a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:part a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s4 :leaf_system_s4 ;
+    :edge_p9_ARG1_b :leaf_body_b ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m2 :leaf_more_m2 ;
+    :edge_h2_o3 :leaf_object_o3 ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_8 a :AMR_Value ;
+    rdfs:label "8" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_system_s4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s4 ;
+    net:coverNode :leaf_system_s4 ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s .
+
+net:compositeClass_dwarf-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d2 ;
+    net:composeFrom net:atomClass_dwarf_d2,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d2,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "unknown" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#b> a ns2:body ;
+    ns2:mod <http://amr.isi.edu/amr_data/SSC-02-01#s3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-02-01#o3> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :edge_a_r :leaf_remain-01_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m :leaf_most_m ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_8 :value_8 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_a2 :leaf_and_a2 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_small-body_b a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_small_s3 ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_small_s3 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "small-body" ;
+    net:hasStructure "unknown" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_o3 :leaf_object_o3 ;
+    :edge_a2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d2 :leaf_dwarf_d2 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_dwarf_d2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d2 ;
+    net:coverNode :leaf_dwarf_d2 ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Structure a owl:Class .
+
+:leaf_dwarf_d2 a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d2 .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_system_s4 a :AMR_Leaf ;
+    :edge_s4_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s4 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_s3 :leaf_small_s3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..d09557edcb6a0ee52afef4adfa8d2486cde6fe79
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev02-20230731/technical-data/tenet.tetras-libre.fr_demo_02-1/tenet.tetras-libre.fr_demo_02_factoid.ttl
@@ -0,0 +1,87 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#small> ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/SolarSystemDev03_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/SolarSystemDev03_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..6673c17fc6c950906059b6154ba83d9e83d5b9ea
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/SolarSystemDev03_factoid.ttl
@@ -0,0 +1,99 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mercury" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#not-direct> a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-include-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-mean-satellite> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#mean> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#satellite> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#size> a owl:Class ;
+    rdfs:label "size" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.log b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.log
new file mode 100644
index 0000000000000000000000000000000000000000..900e9949c7c8f8442f3c027178187a6609789034
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.log
@@ -0,0 +1,165 @@
+- INFO - [TENET] Extraction Processing
+- INFO - 
+ === Process Initialization === 
+- INFO - -- Process Setting 
+- INFO - ----- Corpus source: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-03/ (amr)
+- INFO - ----- Base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731
+- INFO - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/
+- INFO - ----- Ontology target (id): https://tenet.tetras-libre.fr/demo/03/
+- INFO - ----- Current path: /home/lamenji/Workspace/Tetras/tenet/tenet
+- DEBUG - ----- Config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml
+- DEBUG - 
+  ***  Config (Full Parameters) *** 
+  -- Base Parameters
+  ----- config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml
+  ----- uuid: https://tenet.tetras-libre.fr/demo/03/
+  ----- technical base name: tenet.tetras-libre.fr_demo_03
+  ----- source corpus: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-03/
+  ----- target reference: base
+  ----- process level: sentence
+  ----- source type: amr
+  ----- extraction scheme: owl_amr_scheme_1
+  -- Directories
+  ----- base directory: ./
+  ----- structure directory: ./structure/
+  ----- CTS directory: ./scheme/
+  ----- target frame directory: ./../input/targetFrameStructure/
+  ----- input document directory: 
+  ----- base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731
+  ----- output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/tenet.tetras-libre.fr_demo_03-20230731/
+  ----- sentence output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/
+  ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/
+  -- Config File Definition
+  ----- schema file: ./structure/amr-rdf-schema.ttl
+  ----- semantic net file: ./structure/owl-snet-schema.ttl
+  ----- config param file: ./structure/config-parameters.ttl
+  ----- base ontology file: ./structure/base-ontology.ttl
+  ----- CTS file: ./scheme/owl_amr_scheme_1.py
+  -- Useful References for Ontology
+  ----- base URI: https://tenet.tetras-libre.fr/working
+  ----- ontology suffix: -ontology.ttl
+  ----- ontology seed suffix: -ontology-seed.ttl
+  -- Source File Definition
+  ----- source sentence file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-03/**/*.ttl
+  -- Target File Definition
+  ----- frame ontology file: ./../input/targetFrameStructure/base-ontology.ttl
+  ----- frame ontology seed file: ./../input/targetFrameStructure/base-ontology-seed.ttl
+  -- Output
+  ----- ontology namespace: https://tenet.tetras-libre.fr/base-ontology/
+  ----- output file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03.ttl
+  *** - *** 
+- DEBUG - -- Counting number of graph files (sentences) 
+- INFO - ----- Number of Graphs: 1
+- INFO - 
+ === Extraction Processing === 
+- INFO - Single-Processing Run 
+- INFO - 
+ [P-1]     *** extraction from sentence 1 *** 
+- INFO -  [P-1] -- Work Structure Preparation
+- DEBUG -  [P-1] --- Graph Initialization
+- DEBUG -  [P-1] ----- Configuration Loading
+- DEBUG -  [P-1] -------- RDF Schema (320)
+- DEBUG -  [P-1] -------- Semantic Net Definition (486)
+- DEBUG -  [P-1] -------- Config Parameter Definition (520)
+- DEBUG -  [P-1] ----- Frame Ontology Loading
+- DEBUG -  [P-1] -------- Base Ontology produced as output (550)
+- DEBUG -  [P-1] --- Source Data Import
+- DEBUG -  [P-1] ----- Sentence Loading
+- DEBUG -  [P-1] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-03/SSC-03-01.stog.amr.ttl (637)
+- DEBUG -  [P-1] --- Export work graph as turtle
+- DEBUG -  [P-1] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03.ttl 
+- INFO -  [P-1] ----- Sentence (id): SSC-03-01
+- INFO -  [P-1] ----- Sentence (text): Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size.
+- INFO -  [P-1] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-1] ----- Step number: 3
+- INFO -  [P-1] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-1] ----- Total rule number: 0
+- INFO -  [P-1] -- Step 1: Preprocessing
+- INFO -  [P-1] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-1] ----- fix AMR bug (1): 0/0 new triple (637, 0:00:00.019523)
+- INFO -  [P-1] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-1] ----- reclassify AMR-LD concept (1): 10/10 new triples (647, 0:00:00.103167)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (2): 8/8 new triples (655, 0:00:00.047495)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (3): 24/24 new triples (679, 0:00:00.034208)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (4): 28/28 new triples (707, 0:00:00.047888)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (5): 4/4 new triples (711, 0:00:00.028563)
+- DEBUG -  [P-1] ----- reify roles as concept: 0/0 new triple (711, 0:00:00.038609)
+- INFO -  [P-1] ----- reclassify existing variable: 85/85 new triples (796, 0:00:00.020198)
+- DEBUG -  [P-1] ----- add new variable for reified concept: 0/0 new triple (796, 0:00:00.043450)
+- INFO -  [P-1] ----- add AMR leaf for reclassified concept: 63/63 new triples (859, 0:00:00.035266)
+- DEBUG -  [P-1] ----- add AMR leaf for reified concept: 0/0 new triple (859, 0:00:00.010673)
+- INFO -  [P-1] ----- add AMR edge for core relation: 63/63 new triples (922, 0:00:00.114699)
+- DEBUG -  [P-1] ----- add AMR edge for reified concept: 0/0 new triple (922, 0:00:00.020376)
+- INFO -  [P-1] ----- add AMR edge for name relation: 5/5 new triples (927, 0:00:00.021595)
+- INFO -  [P-1] ----- add AMR edge for quant relation: 5/5 new triples (932, 0:00:00.028841)
+- INFO -  [P-1] ----- add AMR edge for polarity relation: 5/5 new triples (937, 0:00:00.032158)
+- INFO -  [P-1] ----- update AMR edge role 1: 24/24 new triples (961, 0:00:00.097810)
+- INFO -  [P-1] ----- add AMR root: 5/5 new triples (966, 0:00:00.009984)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_03_Preprocessing 
+- DEBUG -  [P-1] ----- step: Preprocessing
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/03/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Preprocessing.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/03//Preprocessing
+- INFO -  [P-1] -- Step 2: Transduction
+- INFO -  [P-1] --- Sequence: atomic extraction sequence
+- INFO -  [P-1] ----- extract atom classes: 54/54 new triples (1020, 0:00:00.264614)
+- INFO -  [P-1] ----- extract atom individuals: 8/8 new triples (1028, 0:00:00.054027)
+- INFO -  [P-1] ----- extract atomic properties: 112/112 new triples (1140, 0:00:00.310148)
+- INFO -  [P-1] ----- extract atom values: 15/15 new triples (1155, 0:00:00.138019)
+- INFO -  [P-1] ----- extract atom phenomena: 21/21 new triples (1176, 0:00:00.108372)
+- INFO -  [P-1] ----- propagate atom relations: 38/118 new triples (1214, 0:00:01.561867)
+- INFO -  [P-1] --- Sequence: classification sequence (1)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (1214, 0:00:00.020023)
+- INFO -  [P-1] ----- reclassify argument property to class: 21/26 new triples (1235, 0:00:00.114953)
+- INFO -  [P-1] --- Sequence: phenomena analyze sequence (1)
+- INFO -  [P-1] ----- analyze "polarity" phenomena (1): 33/38 new triples (1268, 0:00:00.097586)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (2): 0/0 new triple (1268, 0:00:00.018994)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (3): 0/0 new triple (1268, 0:00:00.016877)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (4): 0/0 new triple (1268, 0:00:00.035043)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (5): 0/0 new triple (1268, 0:00:00.037701)
+- DEBUG -  [P-1] ----- analyze modifier phenomena (mod): 0/0 new triple (1268, 0:00:00.012552)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (1268, 0:00:00.021040)
+- INFO -  [P-1] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-1] ----- analyze "or" phenomena (1): 0/0 new triple (1268, 0:00:00.011754)
+- DEBUG -  [P-1] ----- analyze "or" phenomena (2): 0/0 new triple (1268, 0:00:00.011736)
+- DEBUG -  [P-1] ----- analyze "and" phenomena (1): 0/0 new triple (1268, 0:00:00.011975)
+- DEBUG -  [P-1] ----- analyze "and" phenomena (2): 0/0 new triple (1268, 0:00:00.011097)
+- INFO -  [P-1] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-1] ----- extract composite classes (1): 0/0 new triple (1268, 0:00:00.032884)
+- INFO -  [P-1] ----- extract composite classes (2): 47/50 new triples (1315, 0:00:00.217734)
+- INFO -  [P-1] --- Sequence: classification sequence (2)
+- INFO -  [P-1] ----- classify class net as entity from core arguments: 18/142 new triples (1333, 0:00:00.303768)
+- DEBUG -  [P-1] ----- classify class net as entity from :part relation: 0/0 new triple (1333, 0:00:00.009415)
+- DEBUG -  [P-1] ----- classify class net as entity from degree arguments: 0/0 new triple (1333, 0:00:00.017532)
+- DEBUG -  [P-1] ----- Associate mother to class net from :domain relation: 0/0 new triple (1333, 0:00:00.008853)
+- DEBUG -  [P-1] ----- Propagate individuals to net with same base node: 0/20 new triple (1333, 0:00:00.044033)
+- DEBUG -  [P-1] ----- Propagate individuals to net with domain link: 0/0 new triple (1333, 0:00:00.009328)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_03_Transduction 
+- DEBUG -  [P-1] ----- step: Transduction
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/03/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Transduction.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/03//Transduction
+- INFO -  [P-1] -- Step 3: Generation
+- INFO -  [P-1] --- Sequence: OWL Generation Sequence
+- INFO -  [P-1] ----- generate OWL class: 50/54 new triples (1383, 0:00:00.461422)
+- INFO -  [P-1] ----- generate OWL property: 25/27 new triples (1408, 0:00:00.237224)
+- INFO -  [P-1] ----- generate OWL individual: 4/4 new triples (1412, 0:00:00.049118)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_03_Generation 
+- DEBUG -  [P-1] ----- step: Generation
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/03/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Generation.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/03//Generation
+- DEBUG -  [P-1] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_factoid.ttl)
+- DEBUG -  [P-1] ----- Number of factoids: 85
+- DEBUG -  [P-1] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/03//factoid
+- INFO -  [P-1] Success (85 extracted triple(s))
+- INFO - 
+ === Final Ontology Generation  === 
+- INFO - -- Making complete factoid graph by merging the result factoids
+- INFO - ----- Total factoid number: 85
+- INFO - -- Serializing graph to factoid string
+- INFO - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/03//factoid
+- INFO - -- Serializing graph to factoid file
+- INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/SolarSystemDev03_factoid.ttl
+- INFO - 
+ === Done === 
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03.ttl b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..9bf5557a1ac6533597d0defe77fced8834c27043
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03.ttl
@@ -0,0 +1,899 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#d> a ns3:direct-02 ;
+    ns3:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    ns2:polarity "-" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m3> .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#o2> .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m> a ns3:mean-01 ;
+    ns3:mean-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:mean-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s2> .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#n> a ns3:natural-03 ;
+    ns3:natural-03.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s2> .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#root01> a ns1:AMR ;
+    ns1:has-id "SSC-03-01" ;
+    ns1:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns1:root <http://amr.isi.edu/amr_data/SSC-03-01#a> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:direct-02.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG2 a ns3:FrameRole .
+
+ns3:equal-01.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG4 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:mean-01.ARG1 a ns3:FrameRole .
+
+ns3:mean-01.ARG2 a ns3:FrameRole .
+
+ns3:natural-03.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-03-01#e> .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a2> a ns2:almost .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#e> a ns3:equal-01 ;
+    ns3:equal-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    ns3:equal-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:equal-01.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#s4> .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    ns3:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/SSC-03-01#p> .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#l> a ns2:large .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m2> a ns1:more .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m3> a ns1:most .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m4> a ns1:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/SSC-03-01#a2> .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o3> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s> .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s> a ns2:sun .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s3> a ns2:small .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s4> a ns2:size .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity .
+
+ns3:direct-02 a ns1:Frame .
+
+ns3:equal-01 a ns1:Frame .
+
+ns3:include-91 a ns1:Frame .
+
+ns3:mean-01 a ns1:Frame .
+
+ns3:natural-03 a ns1:Frame .
+
+ns3:orbit-01 a ns1:Frame .
+
+ns2:almost a ns1:Concept .
+
+ns2:large a ns1:Concept .
+
+ns2:satellite a ns1:Concept .
+
+ns2:size a ns1:Concept .
+
+ns2:small a ns1:Concept .
+
+ns2:sun a ns1:Concept .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept .
+
+ns1:most a ns1:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o> a ns2:object ;
+    ns2:quant "2" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s2> a ns2:satellite .
+
+ns3:have-degree-91 a ns1:Frame .
+
+ns2:object a ns1:Concept .
+
+ns1:more a ns1:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o2> a ns2:object .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..432b5fb61d17a6c6ed2569a2da321e285d69f419
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Generation.ttl
@@ -0,0 +1,1812 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:direct-02.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG2 a ns3:FrameRole .
+
+ns3:equal-01.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG4 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:mean-01.ARG1 a ns3:FrameRole .
+
+ns3:mean-01.ARG2 a ns3:FrameRole .
+
+ns3:natural-03.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_e a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:root_SSC-03-01 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "SSC-03-01" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mercury" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subClassOf sys:Entity ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#not-direct> a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-include-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-mean-satellite> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#mean> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#satellite> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#size> a owl:Class ;
+    rdfs:label "size" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "unknown" .
+
+net:axiom_disjointProperty_not-direct_direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_object-include-object_o a net:Composite_Class_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o,
+        :leaf_object_o2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-include-object" ;
+    net:hasRestriction net:restriction_include-object_ii ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_object-mean-satellite_o2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_object_o2,
+        :leaf_satellite_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o2 ;
+    net:hasNaming "object-mean-satellite" ;
+    net:hasRestriction net:restriction_mean-satellite_m ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG2 net:atomClass_small_s3 ;
+    :role_ARG3 net:atomProperty_most_m3 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#d> a ns3:direct-02 ;
+    ns3:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m> a ns3:mean-01 ;
+    ns3:mean-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:mean-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#n> a ns3:natural-03 ;
+    ns3:natural-03.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#root01> a ns1:AMR ;
+    ns1:has-id "SSC-03-01" ;
+    ns1:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns1:root <http://amr.isi.edu/amr_data/SSC-03-01#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_more_m4 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:composeFrom net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasClassName "more" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "more" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_size_s4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_size_s4 ;
+    net:coverNode :leaf_size_s4 ;
+    net:hasClassName "size" ;
+    net:hasNaming "size" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_equal_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    :role_ARG2 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG3 net:atomClass_size_s4 ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e ;
+    net:hasNaming "equal" ;
+    net:hasPropertyName "equal" ;
+    net:hasPropertyName01 "equaling" ;
+    net:hasPropertyName10 "equal-by" ;
+    net:hasPropertyName12 "equal-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_more_m4,
+        :leaf_planet_p,
+        :leaf_size_s4 .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m3 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m3 ;
+    net:coverNode :leaf_most_m3 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    :role_ARG4 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:restriction_include-object_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o2 ;
+    net:hasNaming "include-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "unknown" .
+
+net:restriction_mean-satellite_m a net:Restriction_Net ;
+    net:composeFrom net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_satellite_s2 ;
+    net:hasNaming "mean-satellite" ;
+    net:hasRestrictionNetValue net:atomClass_satellite_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_mean_m ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#e> a ns3:equal-01 ;
+    ns3:equal-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    ns3:equal-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:equal-01.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    ns3:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m2> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m3> a ns1:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m4> a ns1:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o3> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:equal-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mean-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:natural-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:most a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_almost_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasClassName "almost" ;
+    net:hasNaming "almost" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_orbit_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o3 ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_almost_a2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_2_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_2 ;
+    net:hasNaming "2" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "2" .
+
+net:value_Mercury_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mercury ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Mercury" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_object_o2 .
+
+net:atomProperty_mean_m a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG2 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m ;
+    net:hasNaming "mean" ;
+    net:hasPropertyName "mean" ;
+    net:hasPropertyName01 "meaning" ;
+    net:hasPropertyName10 "mean-by" ;
+    net:hasPropertyName12 "mean-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_satellite_s2 .
+
+net:atomProperty_orbit_o3 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_sun_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:individual_Mercury_p a net:Individual_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Mercury" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:compositeProperty_not-direct_d a net:Composite_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_satellite_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_satellite_s2 ;
+    net:coverNode :leaf_satellite_s2 ;
+    net:hasClassName "satellite" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "satellite" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_direct_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o3,
+        :value_negative .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :edge_d_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..81637631ed45bf441bfc6799d880fbd45fdd2d37
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Preprocessing.ttl
@@ -0,0 +1,1316 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:direct-02.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG2 a ns3:FrameRole .
+
+ns3:equal-01.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG4 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:mean-01.ARG1 a ns3:FrameRole .
+
+ns3:mean-01.ARG2 a ns3:FrameRole .
+
+ns3:natural-03.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_e a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :edge_d_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:root_SSC-03-01 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "SSC-03-01" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#d> a ns3:direct-02 ;
+    ns3:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m> a ns3:mean-01 ;
+    ns3:mean-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:mean-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#n> a ns3:natural-03 ;
+    ns3:natural-03.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#root01> a ns1:AMR ;
+    ns1:has-id "SSC-03-01" ;
+    ns1:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns1:root <http://amr.isi.edu/amr_data/SSC-03-01#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#e> a ns3:equal-01 ;
+    ns3:equal-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    ns3:equal-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:equal-01.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    ns3:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m2> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m3> a ns1:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m4> a ns1:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o3> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:equal-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mean-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:natural-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:most a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..496aca4cee478200611946dcf6f89e84af0c31bd
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_Transduction.ttl
@@ -0,0 +1,1717 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:direct-02.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG1 a ns3:FrameRole .
+
+ns3:equal-01.ARG2 a ns3:FrameRole .
+
+ns3:equal-01.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG4 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:mean-01.ARG1 a ns3:FrameRole .
+
+ns3:mean-01.ARG2 a ns3:FrameRole .
+
+ns3:natural-03.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_e a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:root_SSC-03-01 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "SSC-03-01" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "unknown" .
+
+net:axiom_disjointProperty_not-direct_direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_object-include-object_o a net:Composite_Class_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o,
+        :leaf_object_o2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-include-object" ;
+    net:hasRestriction net:restriction_include-object_ii ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_object-mean-satellite_o2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_object_o2,
+        :leaf_satellite_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o2 ;
+    net:hasNaming "object-mean-satellite" ;
+    net:hasRestriction net:restriction_mean-satellite_m ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG2 net:atomClass_small_s3 ;
+    :role_ARG3 net:atomProperty_most_m3 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#d> a ns3:direct-02 ;
+    ns3:direct-02.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m> a ns3:mean-01 ;
+    ns3:mean-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:mean-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#n> a ns3:natural-03 ;
+    ns3:natural-03.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#root01> a ns1:AMR ;
+    ns1:has-id "SSC-03-01" ;
+    ns1:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns1:root <http://amr.isi.edu/amr_data/SSC-03-01#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_more_m4 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:composeFrom net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasClassName "more" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "more" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_size_s4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_size_s4 ;
+    net:coverNode :leaf_size_s4 ;
+    net:hasClassName "size" ;
+    net:hasNaming "size" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_equal_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    :role_ARG2 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG3 net:atomClass_size_s4 ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e ;
+    net:hasNaming "equal" ;
+    net:hasPropertyName "equal" ;
+    net:hasPropertyName01 "equaling" ;
+    net:hasPropertyName10 "equal-by" ;
+    net:hasPropertyName12 "equal-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_more_m4,
+        :leaf_planet_p,
+        :leaf_size_s4 .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m3 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m3 ;
+    net:coverNode :leaf_most_m3 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    :role_ARG4 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:restriction_include-object_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o2 ;
+    net:hasNaming "include-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "unknown" .
+
+net:restriction_mean-satellite_m a net:Restriction_Net ;
+    net:composeFrom net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_satellite_s2 ;
+    net:hasNaming "mean-satellite" ;
+    net:hasRestrictionNetValue net:atomClass_satellite_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_mean_m ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/SSC-03-01#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/SSC-03-01#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#e> a ns3:equal-01 ;
+    ns3:equal-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#m4> ;
+    ns3:equal-01.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    ns3:equal-01.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/SSC-03-01#l> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/SSC-03-01#m2> ;
+    ns3:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/SSC-03-01#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m2> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m3> a ns1:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#m4> a ns1:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/SSC-03-01#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o3> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-03-01#o2> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-03-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:equal-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mean-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:natural-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:most a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_almost_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasClassName "almost" ;
+    net:hasNaming "almost" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_orbit_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o3 ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_almost_a2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_2_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_2 ;
+    net:hasNaming "2" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "2" .
+
+net:value_Mercury_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mercury ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Mercury" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_object_o2 .
+
+net:atomProperty_mean_m a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG2 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m ;
+    net:hasNaming "mean" ;
+    net:hasPropertyName "mean" ;
+    net:hasPropertyName01 "meaning" ;
+    net:hasPropertyName10 "mean-by" ;
+    net:hasPropertyName12 "mean-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_satellite_s2 .
+
+net:atomProperty_orbit_o3 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_sun_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:individual_Mercury_p a net:Individual_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Mercury" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-03-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:compositeProperty_not-direct_d a net:Composite_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_satellite_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_satellite_s2 ;
+    net:coverNode :leaf_satellite_s2 ;
+    net:hasClassName "satellite" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "satellite" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_direct_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o3,
+        :value_negative .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :edge_d_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..6673c17fc6c950906059b6154ba83d9e83d5b9ea
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev03-20230731/technical-data/tenet.tetras-libre.fr_demo_03-1/tenet.tetras-libre.fr_demo_03_factoid.ttl
@@ -0,0 +1,99 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mercury" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#not-direct> a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-include-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-mean-satellite> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#mean> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#satellite> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#size> a owl:Class ;
+    rdfs:label "size" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/SolarSystemProd_factoid.ttl
index 468276f9fa0bf98ad5d4534024b621b8e1fafbe4..5ee3af9c5e05ef3faa2f8ddf9cddbe019fe720a0 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/SolarSystemProd_factoid.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/SolarSystemProd_factoid.ttl
@@ -2,16 +2,46 @@
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 
+<https://tenet.tetras-libre.fr/extract-result#Cerre> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Cerre" ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#Earth> a owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#planet> ;
     rdfs:label "Earth" ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#Eris> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Eris" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Gonggong> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Gonggong" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Haumea> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Haumea" ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#planet> ;
     rdfs:label "Jupiter" ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#KuiperBelt> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#belt> ;
+    rdfs:label "KuiperBelt" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Makemake> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Makemake" ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#Mars> a owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#planet> ;
     rdfs:label "Mars" ;
@@ -22,21 +52,61 @@
     rdfs:label "Mercury" ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#MilkyWay> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#galaxy> ;
+    rdfs:label "MilkyWay" ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#Neptune> a owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#planet> ;
     rdfs:label "Neptune" ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#Neptunian> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Neptunian" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Oortcloud> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    rdfs:label "Oortcloud" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Orcus> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Orcus" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Orion> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#arm> ;
+    rdfs:label "Orion" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Pluto> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Pluto" ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#ProximaCentre> a owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#star> ;
     rdfs:label "ProximaCentre" ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#Quaoar> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Quaoar" ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#Saturn> a owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#planet> ;
     rdfs:label "Saturn" ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#Sedna> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Sedna" ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#system>,
         <https://tenet.tetras-libre.fr/extract-result#system-hasPart-object>,
@@ -54,6 +124,16 @@
     rdfs:label "Venus" ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#accept> a owl:Class ;
+    rdfs:label "accept" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#after> a owl:ObjectProperty ;
+    rdfs:label "after" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#all> a owl:ObjectProperty ;
     rdfs:label "all" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -76,11 +156,33 @@
         <https://tenet.tetras-libre.fr/extract-result#asteroid-belt> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#at-least> a owl:Class ;
+    rdfs:label "at-least" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#before> a owl:Class ;
+    rdfs:label "before" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#body-include-body> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#body> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#centaur> a owl:Class ;
     rdfs:label "centaur" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#center> a owl:Class ;
+    rdfs:label "center" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#charge> a owl:ObjectProperty ;
     rdfs:label "charge" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -98,9 +200,11 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#comet> a owl:Class ;
-    rdfs:label "comet" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#collapse-cause-gravity> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#cause> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#gravity> ],
+        <https://tenet.tetras-libre.fr/extract-result#collapse> ;
     ns1:fromStructure "unknown" .
 
 <https://tenet.tetras-libre.fr/extract-result#compose-resemble-terrestrial-planet> a owl:Class ;
@@ -110,6 +214,21 @@
         <https://tenet.tetras-libre.fr/extract-result#compose> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#considerable> a owl:Class ;
+    rdfs:label "considerable" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#date> a owl:ObjectProperty ;
+    rdfs:label "date" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#debate> a owl:Class ;
+    rdfs:label "debate" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ;
     rdfs:label "direct" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -122,6 +241,21 @@
         <https://tenet.tetras-libre.fr/extract-result#disc> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#discover> a owl:Class ;
+    rdfs:label "discover" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#distance-quantity> a owl:Class ;
+    rdfs:label "distance-quantity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#distant> a owl:ObjectProperty ;
+    rdfs:label "distant" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#dust> a owl:Class ;
     rdfs:label "dust" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
@@ -132,6 +266,16 @@
     rdfs:label "ecliptic" ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#enough> a owl:Class ;
+    rdfs:label "enough" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#exist> a owl:ObjectProperty ;
+    rdfs:label "exist" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#extend> a owl:ObjectProperty ;
     rdfs:label "extend" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -142,6 +286,11 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#form> a owl:ObjectProperty ;
+    rdfs:label "form" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#free> a owl:ObjectProperty ;
     rdfs:label "free" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -161,6 +310,15 @@
         <https://tenet.tetras-libre.fr/extract-result#gas-giant> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#general> a owl:ObjectProperty ;
+    rdfs:label "general" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#giant-planet> a owl:Class ;
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
     ns1:fromStructure "unknown" .
@@ -177,6 +335,11 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#have> a owl:ObjectProperty ;
+    rdfs:label "have" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#heliopause> a owl:Class ;
     rdfs:label "heliopause" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
@@ -205,15 +368,14 @@
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#giant> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
-    rdfs:label "include" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
-    ns1:fromStructure "unknown" .
-
 <https://tenet.tetras-libre.fr/extract-result#inner-system> a owl:Class ;
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#intercontinental-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#interplanetary-cloud> a owl:Class ;
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
     ns1:fromStructure "unknown" .
@@ -237,21 +399,34 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#long> a owl:ObjectProperty ;
+    rdfs:label "long" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#main> a owl:Class ;
     rdfs:label "main" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#many> a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mass-be-sun> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#be> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#sun> ],
+        <https://tenet.tetras-libre.fr/extract-result#mass> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#massive> a owl:Class ;
     rdfs:label "massive" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
-    rdfs:label "mean" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
-    ns1:fromStructure "unknown" .
-
 <https://tenet.tetras-libre.fr/extract-result#melt> a owl:ObjectProperty ;
     rdfs:label "melt" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -267,6 +442,16 @@
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#molecule> a owl:Class ;
+    rdfs:label "molecule" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#moon> a owl:Class ;
+    rdfs:label "moon" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#more> a owl:Class,
         owl:ObjectProperty ;
     rdfs:label "more" ;
@@ -279,15 +464,49 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#near> a owl:ObjectProperty ;
     rdfs:label "near" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#new> a owl:ObjectProperty ;
+    rdfs:label "new" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#night> a owl:Class ;
+    rdfs:label "night" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#not-direct> a owl:ObjectProperty ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#now> a owl:Class ;
+    rdfs:label "now" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-include-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-mean-satellite> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#mean> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#satellite> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#object-orbit-hasManner-direct-sun> a owl:Class ;
     rdfs:subClassOf [ a owl:Restriction ;
             owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit-hasManner-direct> ;
@@ -302,6 +521,18 @@
         <https://tenet.tetras-libre.fr/extract-result#object> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#object-population-compose-ice> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#compose> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#ice> ],
+        <https://tenet.tetras-libre.fr/extract-result#object-population> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#observe> a owl:ObjectProperty ;
+    rdfs:label "observe" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#oppose> a owl:ObjectProperty ;
     rdfs:label "oppose" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -345,6 +576,22 @@
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#period-comet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#comet> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#person> a owl:Class ;
+    rdfs:label "person" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet-include-dwarf-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#dwarf-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#planet-ring-encircle-each-planet> a owl:Class ;
     rdfs:subClassOf [ a owl:Restriction ;
             owl:onProperty <https://tenet.tetras-libre.fr/extract-result#encircle> ;
@@ -378,6 +625,11 @@
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#prove> a owl:ObjectProperty ;
+    rdfs:label "prove" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#region-know-heliosphere> a owl:Class ;
     rdfs:subClassOf [ a owl:Restriction ;
             owl:onProperty <https://tenet.tetras-libre.fr/extract-result#know> ;
@@ -397,6 +649,11 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#relative-position> a owl:Class ;
+    rdfs:label "relative-position" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
     rdfs:label "remain" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -407,11 +664,57 @@
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#roughly> a owl:Class ;
+    rdfs:label "roughly" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#round> a owl:ObjectProperty ;
+    rdfs:label "round" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-body> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#scatter> a owl:ObjectProperty ;
     rdfs:label "scatter" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population-lie-beyond> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#lie> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#beyond> ],
+        <https://tenet.tetras-libre.fr/extract-result#sednoid-population> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#see> a owl:ObjectProperty ;
+    rdfs:label "see" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#size> a owl:Class ;
+    rdfs:label "size" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sky> a owl:Class ;
+    rdfs:label "sky" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
     ns1:fromStructure "unknown" .
@@ -424,6 +727,23 @@
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#bubble> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#some> a owl:Class ;
+    rdfs:label "some" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#source> a owl:Class ;
+    rdfs:label "source" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#star-include-star> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#star> ],
+        <https://tenet.tetras-libre.fr/extract-result#star> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#stream> a owl:Class ;
     rdfs:label "stream" ;
     rdfs:subClassOf ns1:Entity ;
@@ -453,10 +773,61 @@
         <https://tenet.tetras-libre.fr/extract-result#sun-wind> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#system-hasPart-mass> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#mass> ],
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#temporal-quantity> a owl:Class ;
+    rdfs:label "temporal-quantity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#term> a owl:ObjectProperty ;
+    rdfs:label "term" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#think> a owl:ObjectProperty ;
+    rdfs:label "think" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#this-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#this-region> a owl:Class ;
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#region> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#times> a owl:Class ;
+    rdfs:label "times" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#trans-Neptunian> a owl:Class ;
+    rdfs:label "trans-Neptunian" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#transpire> a owl:ObjectProperty ;
+    rdfs:label "transpire" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#under> a owl:Class ;
+    rdfs:label "under" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#usual> a owl:Class ;
+    rdfs:label "usual" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#various-population-travel-between> a owl:Class ;
     rdfs:subClassOf [ a owl:Restriction ;
             owl:onProperty <https://tenet.tetras-libre.fr/extract-result#travel> ;
@@ -464,11 +835,20 @@
         <https://tenet.tetras-libre.fr/extract-result#various-population> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#vast-majority> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#majority> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#water> a owl:Class ;
     rdfs:label "water" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#year> a owl:ObjectProperty ;
+    rdfs:label "year" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class,
         owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#almost> ;
@@ -480,44 +860,47 @@
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#circular> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#asteroid> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
-    rdfs:label "asteroid" ;
-    rdfs:subClassOf ns1:Undetermined_Thing ;
-    ns1:fromStructure "unknown" .
-
 <https://tenet.tetras-libre.fr/extract-result#asteroid-belt> a owl:Class ;
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#belt> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#belt> a owl:Class ;
-    rdfs:label "belt" ;
-    rdfs:subClassOf ns1:Entity ;
-    ns1:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#bind> a owl:ObjectProperty ;
-    rdfs:label "bind" ;
+<https://tenet.tetras-libre.fr/extract-result#be> a owl:ObjectProperty ;
+    rdfs:label "be" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
-    rdfs:label "body" ;
+<https://tenet.tetras-libre.fr/extract-result#beyond> a owl:Class ;
+    rdfs:label "beyond" ;
     rdfs:subClassOf ns1:Entity,
         ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#bind> a owl:ObjectProperty ;
+    rdfs:label "bind" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#categorize> a owl:ObjectProperty ;
     rdfs:label "categorize" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#cause> a owl:ObjectProperty ;
+    rdfs:label "cause" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#circular-orbit> a owl:Class ;
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#orbit> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#cloud> a owl:Class ;
-    rdfs:label "cloud" ;
+<https://tenet.tetras-libre.fr/extract-result#collapse> a owl:Class ;
+    rdfs:label "collapse" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#comet> a owl:Class ;
+    rdfs:label "comet" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
@@ -538,10 +921,6 @@
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    ns1:fromStructure "unknown" .
-
 <https://tenet.tetras-libre.fr/extract-result#each> a owl:Class,
         owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#each> ;
@@ -570,22 +949,29 @@
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#gravity> a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#heliosphere> a owl:Class ;
     rdfs:label "heliosphere" ;
-    rdfs:subClassOf ns1:Entity ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#ice> a owl:Class,
+<https://tenet.tetras-libre.fr/extract-result#inner> a owl:Class,
         owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#ice> ;
-    rdfs:label "ice" ;
+        <https://tenet.tetras-libre.fr/extract-result#inner> ;
+    rdfs:label "inner" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#inner> a owl:Class,
+<https://tenet.tetras-libre.fr/extract-result#intercontinental> a owl:Class,
         owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#inner> ;
-    rdfs:label "inner" ;
+        <https://tenet.tetras-libre.fr/extract-result#intercontinental> ;
+    rdfs:label "intercontinental" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
@@ -608,8 +994,13 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
-    rdfs:label "lie" ;
+<https://tenet.tetras-libre.fr/extract-result#majority> a owl:Class ;
+    rdfs:label "majority" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
@@ -620,6 +1011,10 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#object-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#orbit-hasManner-direct> a owl:ObjectProperty ;
     rdfs:subPropertyOf <https://tenet.tetras-libre.fr/extract-result#orbit> ;
     ns1:fromStructure "unknown" .
@@ -654,6 +1049,13 @@
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#period> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#period> ;
+    rdfs:label "period" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#point> a owl:Class ;
     rdfs:label "point" ;
     rdfs:subClassOf ns1:Entity ;
@@ -664,6 +1066,17 @@
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#sednoid> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#sednoid> ;
+    rdfs:label "sednoid" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
         owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#small> ;
@@ -679,11 +1092,6 @@
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#star> a owl:Class ;
-    rdfs:label "star" ;
-    rdfs:subClassOf ns1:Entity ;
-    ns1:fromStructure "unknown" .
-
 <https://tenet.tetras-libre.fr/extract-result#such> a owl:Class,
         owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#such> ;
@@ -724,6 +1132,11 @@
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#thing> a owl:Class ;
+    rdfs:label "thing" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#this> a owl:Class,
         owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#this> ;
@@ -742,11 +1155,23 @@
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#vast> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#vast> ;
+    rdfs:label "vast" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#wind> a owl:Class ;
     rdfs:label "wind" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#belt> a owl:Class ;
+    rdfs:label "belt" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#between> a owl:Class ;
     rdfs:label "between" ;
     rdfs:subClassOf ns1:Entity ;
@@ -775,6 +1200,10 @@
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#encircle> a owl:ObjectProperty ;
     rdfs:label "encircle" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -799,15 +1228,28 @@
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#planet-ring> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#ring> ;
+<https://tenet.tetras-libre.fr/extract-result#ice> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#ice> ;
+    rdfs:label "ice" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
-    rdfs:label "population" ;
+<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mass> a owl:Class ;
+    rdfs:label "mass" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#planet-ring> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#ring> ;
+    ns1:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#resemble> a owl:ObjectProperty ;
     rdfs:label "resemble" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
@@ -823,13 +1265,6 @@
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#compose> a owl:Class,
-        owl:ObjectProperty ;
-    rdfs:label "compose" ;
-    rdfs:subClassOf ns1:Entity ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
-    ns1:fromStructure "unknown" .
-
 <https://tenet.tetras-libre.fr/extract-result#giant> a owl:Class,
         owl:Individual,
         <https://tenet.tetras-libre.fr/extract-result#giant> ;
@@ -838,16 +1273,55 @@
         ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class,
+<https://tenet.tetras-libre.fr/extract-result#pressure> a owl:Class ;
+    rdfs:label "pressure" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#star> a owl:Class ;
+    rdfs:label "star" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#asteroid> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "asteroid" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#cloud> a owl:Class ;
+    rdfs:label "cloud" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:Class,
         owl:ObjectProperty ;
-    rdfs:label "orbit" ;
+    rdfs:label "compose" ;
     rdfs:subClassOf ns1:Entity ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#pressure> a owl:Class ;
-    rdfs:label "pressure" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#region> a owl:Class ;
+    rdfs:label "region" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
 <https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
@@ -855,8 +1329,15 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#region> a owl:Class ;
-    rdfs:label "region" ;
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
     rdfs:subClassOf ns1:Entity,
         ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
@@ -875,7 +1356,9 @@
         ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
     rdfs:label "object" ;
     rdfs:subClassOf ns1:Entity,
         ns1:Undetermined_Thing ;
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.log b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.log
index 04471edd69ba82870638c50ef1d4ae2055f6bb9d..8326b506663afb9ab5416a73d7b35e3693204dac 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.log
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.log
@@ -76,25 +76,25 @@
 - DEBUG -  [P-1] ----- Total rule number: 0
 - INFO -  [P-1] -- Step 1: Preprocessing
 - INFO -  [P-1] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- INFO -  [P-1] ----- fix AMR bug (1): 5/5 new triples (603, 0:00:00.016086)
+- INFO -  [P-1] ----- fix AMR bug (1): 5/5 new triples (603, 0:00:00.018502)
 - INFO -  [P-1] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-1] ----- reclassify AMR-LD concept (1): 10/10 new triples (613, 0:00:00.079879)
-- DEBUG -  [P-1] ----- reclassify AMR-LD concept (2): 0/0 new triple (613, 0:00:00.049116)
-- INFO -  [P-1] ----- reclassify AMR-LD concept (3): 12/12 new triples (625, 0:00:00.027303)
-- INFO -  [P-1] ----- reclassify AMR-LD concept (4): 16/16 new triples (641, 0:00:00.043933)
-- INFO -  [P-1] ----- reclassify AMR-LD concept (5): 2/4 new triples (643, 0:00:00.030388)
-- INFO -  [P-1] ----- reify roles as concept: 10/10 new triples (653, 0:00:00.035108)
-- INFO -  [P-1] ----- reclassify existing variable: 45/45 new triples (698, 0:00:00.016539)
-- INFO -  [P-1] ----- add new variable for reified concept: 8/8 new triples (706, 0:00:00.046343)
-- INFO -  [P-1] ----- add AMR leaf for reclassified concept: 33/33 new triples (739, 0:00:00.017792)
-- INFO -  [P-1] ----- add AMR leaf for reified concept: 8/8 new triples (747, 0:00:00.011219)
-- INFO -  [P-1] ----- add AMR edge for core relation: 27/27 new triples (774, 0:00:00.085970)
-- INFO -  [P-1] ----- add AMR edge for reified concept: 12/12 new triples (786, 0:00:00.058048)
-- INFO -  [P-1] ----- add AMR edge for name relation: 5/5 new triples (791, 0:00:00.021901)
-- DEBUG -  [P-1] ----- add AMR edge for quant relation: 0/0 new triple (791, 0:00:00.020776)
-- INFO -  [P-1] ----- add AMR edge for polarity relation: 5/5 new triples (796, 0:00:00.030372)
-- INFO -  [P-1] ----- update AMR edge role 1: 15/15 new triples (811, 0:00:00.071847)
-- INFO -  [P-1] ----- add AMR root: 5/5 new triples (816, 0:00:00.009893)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (1): 10/10 new triples (613, 0:00:00.081048)
+- DEBUG -  [P-1] ----- reclassify AMR-LD concept (2): 0/0 new triple (613, 0:00:00.050047)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (3): 12/12 new triples (625, 0:00:00.028548)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (4): 16/16 new triples (641, 0:00:00.047966)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (5): 2/4 new triples (643, 0:00:00.029060)
+- INFO -  [P-1] ----- reify roles as concept: 10/10 new triples (653, 0:00:00.038182)
+- INFO -  [P-1] ----- reclassify existing variable: 45/45 new triples (698, 0:00:00.019049)
+- INFO -  [P-1] ----- add new variable for reified concept: 8/8 new triples (706, 0:00:00.047106)
+- INFO -  [P-1] ----- add AMR leaf for reclassified concept: 33/33 new triples (739, 0:00:00.020654)
+- INFO -  [P-1] ----- add AMR leaf for reified concept: 8/8 new triples (747, 0:00:00.015538)
+- INFO -  [P-1] ----- add AMR edge for core relation: 27/27 new triples (774, 0:00:00.088380)
+- INFO -  [P-1] ----- add AMR edge for reified concept: 12/12 new triples (786, 0:00:00.066126)
+- INFO -  [P-1] ----- add AMR edge for name relation: 5/5 new triples (791, 0:00:00.018046)
+- DEBUG -  [P-1] ----- add AMR edge for quant relation: 0/0 new triple (791, 0:00:00.020000)
+- INFO -  [P-1] ----- add AMR edge for polarity relation: 5/5 new triples (796, 0:00:00.030238)
+- INFO -  [P-1] ----- update AMR edge role 1: 15/15 new triples (811, 0:00:00.069727)
+- INFO -  [P-1] ----- add AMR root: 5/5 new triples (816, 0:00:00.011683)
 - DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-1] ----- step: Preprocessing
 - DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -102,38 +102,38 @@
 - DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-1] -- Step 2: Transduction
 - INFO -  [P-1] --- Sequence: atomic extraction sequence
-- INFO -  [P-1] ----- extract atom classes: 30/30 new triples (846, 0:00:00.144068)
-- INFO -  [P-1] ----- extract atom individuals: 8/8 new triples (854, 0:00:00.042773)
-- INFO -  [P-1] ----- extract atomic properties: 75/75 new triples (929, 0:00:00.219345)
-- INFO -  [P-1] ----- extract atom values: 10/10 new triples (939, 0:00:00.054092)
-- INFO -  [P-1] ----- extract atom phenomena: 14/14 new triples (953, 0:00:00.064800)
-- INFO -  [P-1] ----- propagate atom relations: 24/68 new triples (977, 0:00:00.989588)
+- INFO -  [P-1] ----- extract atom classes: 30/30 new triples (846, 0:00:00.152627)
+- INFO -  [P-1] ----- extract atom individuals: 8/8 new triples (854, 0:00:00.053775)
+- INFO -  [P-1] ----- extract atomic properties: 75/75 new triples (929, 0:00:00.206251)
+- INFO -  [P-1] ----- extract atom values: 10/10 new triples (939, 0:00:00.048654)
+- INFO -  [P-1] ----- extract atom phenomena: 14/14 new triples (953, 0:00:00.066875)
+- INFO -  [P-1] ----- propagate atom relations: 24/68 new triples (977, 0:00:01.009087)
 - INFO -  [P-1] --- Sequence: classification sequence (1)
-- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (977, 0:00:00.023133)
-- INFO -  [P-1] ----- reclassify argument property to class: 11/14 new triples (988, 0:00:00.065438)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (977, 0:00:00.020559)
+- INFO -  [P-1] ----- reclassify argument property to class: 11/14 new triples (988, 0:00:00.069257)
 - INFO -  [P-1] --- Sequence: phenomena analyze sequence (1)
-- INFO -  [P-1] ----- analyze "polarity" phenomena (1): 32/36 new triples (1020, 0:00:00.092182)
-- DEBUG -  [P-1] ----- analyze "polarity" phenomena (2): 0/0 new triple (1020, 0:00:00.017177)
-- DEBUG -  [P-1] ----- analyze "polarity" phenomena (3): 0/0 new triple (1020, 0:00:00.019772)
-- DEBUG -  [P-1] ----- analyze "polarity" phenomena (4): 0/0 new triple (1020, 0:00:00.034072)
-- DEBUG -  [P-1] ----- analyze "polarity" phenomena (5): 0/0 new triple (1020, 0:00:00.035529)
-- DEBUG -  [P-1] ----- analyze modifier phenomena (mod): 0/0 new triple (1020, 0:00:00.009195)
-- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (1020, 0:00:00.025324)
+- INFO -  [P-1] ----- analyze "polarity" phenomena (1): 32/36 new triples (1020, 0:00:00.100486)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (2): 0/0 new triple (1020, 0:00:00.016831)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (3): 0/0 new triple (1020, 0:00:00.019030)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (4): 0/0 new triple (1020, 0:00:00.037395)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (5): 0/0 new triple (1020, 0:00:00.036045)
+- DEBUG -  [P-1] ----- analyze modifier phenomena (mod): 0/0 new triple (1020, 0:00:00.008948)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (1020, 0:00:00.019365)
 - INFO -  [P-1] --- Sequence: phenomena analyze sequence (2)
-- INFO -  [P-1] ----- analyze "or" phenomena (1): 1/1 new triple (1021, 0:00:00.074971)
-- INFO -  [P-1] ----- analyze "or" phenomena (2): 55/82 new triples (1076, 0:00:00.261107)
-- INFO -  [P-1] ----- analyze "and" phenomena (1): 2/14 new triples (1078, 0:00:00.136715)
-- DEBUG -  [P-1] ----- analyze "and" phenomena (2): 0/0 new triple (1078, 0:00:00.015162)
+- INFO -  [P-1] ----- analyze "or" phenomena (1): 1/1 new triple (1021, 0:00:00.070481)
+- INFO -  [P-1] ----- analyze "or" phenomena (2): 55/82 new triples (1076, 0:00:00.271987)
+- INFO -  [P-1] ----- analyze "and" phenomena (1): 2/14 new triples (1078, 0:00:00.157421)
+- DEBUG -  [P-1] ----- analyze "and" phenomena (2): 0/0 new triple (1078, 0:00:00.012357)
 - INFO -  [P-1] --- Sequence: composite class extraction sequence
-- INFO -  [P-1] ----- extract composite classes (1): 127/138 new triples (1205, 0:00:00.487369)
-- DEBUG -  [P-1] ----- extract composite classes (2): 0/0 new triple (1205, 0:00:00.033825)
+- INFO -  [P-1] ----- extract composite classes (1): 127/138 new triples (1205, 0:00:00.511788)
+- DEBUG -  [P-1] ----- extract composite classes (2): 0/0 new triple (1205, 0:00:00.031954)
 - INFO -  [P-1] --- Sequence: classification sequence (2)
-- INFO -  [P-1] ----- classify class net as entity from core arguments: 10/181 new triples (1215, 0:00:00.244570)
-- DEBUG -  [P-1] ----- classify class net as entity from :part relation: 0/0 new triple (1215, 0:00:00.008803)
-- DEBUG -  [P-1] ----- classify class net as entity from degree arguments: 0/0 new triple (1215, 0:00:00.018990)
-- INFO -  [P-1] ----- Associate mother to class net from :domain relation: 5/34 new triples (1220, 0:00:00.073651)
-- DEBUG -  [P-1] ----- Propagate individuals to net with same base node: 0/10 new triple (1220, 0:00:00.024784)
-- INFO -  [P-1] ----- Propagate individuals to net with domain link: 3/60 new triples (1223, 0:00:00.104683)
+- INFO -  [P-1] ----- classify class net as entity from core arguments: 10/181 new triples (1215, 0:00:00.254955)
+- DEBUG -  [P-1] ----- classify class net as entity from :part relation: 0/0 new triple (1215, 0:00:00.010959)
+- DEBUG -  [P-1] ----- classify class net as entity from degree arguments: 0/0 new triple (1215, 0:00:00.017229)
+- INFO -  [P-1] ----- Associate mother to class net from :domain relation: 5/34 new triples (1220, 0:00:00.077677)
+- DEBUG -  [P-1] ----- Propagate individuals to net with same base node: 0/10 new triple (1220, 0:00:00.026292)
+- INFO -  [P-1] ----- Propagate individuals to net with domain link: 3/60 new triples (1223, 0:00:00.109948)
 - DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-1] ----- step: Transduction
 - DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -141,9 +141,9 @@
 - DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-1] -- Step 3: Generation
 - INFO -  [P-1] --- Sequence: OWL Generation Sequence
-- INFO -  [P-1] ----- generate OWL class: 52/55 new triples (1275, 0:00:00.546021)
-- INFO -  [P-1] ----- generate OWL property: 29/29 new triples (1304, 0:00:00.274318)
-- INFO -  [P-1] ----- generate OWL individual: 6/7 new triples (1310, 0:00:00.069121)
+- INFO -  [P-1] ----- generate OWL class: 52/55 new triples (1275, 0:00:00.564666)
+- INFO -  [P-1] ----- generate OWL property: 29/29 new triples (1304, 0:00:00.297240)
+- INFO -  [P-1] ----- generate OWL individual: 6/7 new triples (1310, 0:00:00.079416)
 - DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-1] ----- step: Generation
 - DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -176,25 +176,25 @@
 - DEBUG -  [P-2] ----- Total rule number: 0
 - INFO -  [P-2] -- Step 1: Preprocessing
 - INFO -  [P-2] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-2] ----- fix AMR bug (1): 0/0 new triple (625, 0:00:00.014522)
+- DEBUG -  [P-2] ----- fix AMR bug (1): 0/0 new triple (625, 0:00:00.018106)
 - INFO -  [P-2] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-2] ----- reclassify AMR-LD concept (1): 10/10 new triples (635, 0:00:00.091940)
-- INFO -  [P-2] ----- reclassify AMR-LD concept (2): 8/8 new triples (643, 0:00:00.048816)
-- INFO -  [P-2] ----- reclassify AMR-LD concept (3): 12/12 new triples (655, 0:00:00.027794)
-- INFO -  [P-2] ----- reclassify AMR-LD concept (4): 28/28 new triples (683, 0:00:00.047098)
-- INFO -  [P-2] ----- reclassify AMR-LD concept (5): 4/4 new triples (687, 0:00:00.031019)
-- INFO -  [P-2] ----- reify roles as concept: 5/5 new triples (692, 0:00:00.035558)
-- INFO -  [P-2] ----- reclassify existing variable: 81/81 new triples (773, 0:00:00.019419)
-- INFO -  [P-2] ----- add new variable for reified concept: 4/4 new triples (777, 0:00:00.048760)
-- INFO -  [P-2] ----- add AMR leaf for reclassified concept: 60/60 new triples (837, 0:00:00.028624)
-- INFO -  [P-2] ----- add AMR leaf for reified concept: 4/4 new triples (841, 0:00:00.010780)
-- INFO -  [P-2] ----- add AMR edge for core relation: 54/54 new triples (895, 0:00:00.115446)
-- INFO -  [P-2] ----- add AMR edge for reified concept: 6/6 new triples (901, 0:00:00.078033)
-- INFO -  [P-2] ----- add AMR edge for name relation: 5/5 new triples (906, 0:00:00.021365)
-- INFO -  [P-2] ----- add AMR edge for quant relation: 5/5 new triples (911, 0:00:00.028263)
-- DEBUG -  [P-2] ----- add AMR edge for polarity relation: 0/0 new triple (911, 0:00:00.028538)
-- INFO -  [P-2] ----- update AMR edge role 1: 22/22 new triples (933, 0:00:00.091528)
-- INFO -  [P-2] ----- add AMR root: 5/5 new triples (938, 0:00:00.010059)
+- INFO -  [P-2] ----- reclassify AMR-LD concept (1): 10/10 new triples (635, 0:00:00.102782)
+- INFO -  [P-2] ----- reclassify AMR-LD concept (2): 8/8 new triples (643, 0:00:00.047517)
+- INFO -  [P-2] ----- reclassify AMR-LD concept (3): 12/12 new triples (655, 0:00:00.028617)
+- INFO -  [P-2] ----- reclassify AMR-LD concept (4): 28/28 new triples (683, 0:00:00.053016)
+- INFO -  [P-2] ----- reclassify AMR-LD concept (5): 4/4 new triples (687, 0:00:00.029836)
+- INFO -  [P-2] ----- reify roles as concept: 5/5 new triples (692, 0:00:00.036914)
+- INFO -  [P-2] ----- reclassify existing variable: 81/81 new triples (773, 0:00:00.020447)
+- INFO -  [P-2] ----- add new variable for reified concept: 4/4 new triples (777, 0:00:00.043526)
+- INFO -  [P-2] ----- add AMR leaf for reclassified concept: 60/60 new triples (837, 0:00:00.029251)
+- INFO -  [P-2] ----- add AMR leaf for reified concept: 4/4 new triples (841, 0:00:00.012694)
+- INFO -  [P-2] ----- add AMR edge for core relation: 54/54 new triples (895, 0:00:00.116610)
+- INFO -  [P-2] ----- add AMR edge for reified concept: 6/6 new triples (901, 0:00:00.089589)
+- INFO -  [P-2] ----- add AMR edge for name relation: 5/5 new triples (906, 0:00:00.022134)
+- INFO -  [P-2] ----- add AMR edge for quant relation: 5/5 new triples (911, 0:00:00.023100)
+- DEBUG -  [P-2] ----- add AMR edge for polarity relation: 0/0 new triple (911, 0:00:00.029396)
+- INFO -  [P-2] ----- update AMR edge role 1: 22/22 new triples (933, 0:00:00.091761)
+- INFO -  [P-2] ----- add AMR root: 5/5 new triples (938, 0:00:00.009581)
 - DEBUG -  [P-2] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-2] ----- step: Preprocessing
 - DEBUG -  [P-2] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -202,38 +202,38 @@
 - DEBUG -  [P-2] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-2] -- Step 2: Transduction
 - INFO -  [P-2] --- Sequence: atomic extraction sequence
-- INFO -  [P-2] ----- extract atom classes: 66/66 new triples (1004, 0:00:00.300768)
-- INFO -  [P-2] ----- extract atom individuals: 8/8 new triples (1012, 0:00:00.050860)
-- INFO -  [P-2] ----- extract atomic properties: 72/72 new triples (1084, 0:00:00.203148)
-- INFO -  [P-2] ----- extract atom values: 10/10 new triples (1094, 0:00:00.047572)
-- INFO -  [P-2] ----- extract atom phenomena: 28/28 new triples (1122, 0:00:00.123658)
-- INFO -  [P-2] ----- propagate atom relations: 35/96 new triples (1157, 0:00:01.569609)
+- INFO -  [P-2] ----- extract atom classes: 66/66 new triples (1004, 0:00:00.317122)
+- INFO -  [P-2] ----- extract atom individuals: 8/8 new triples (1012, 0:00:00.047179)
+- INFO -  [P-2] ----- extract atomic properties: 72/72 new triples (1084, 0:00:00.214471)
+- INFO -  [P-2] ----- extract atom values: 10/10 new triples (1094, 0:00:00.050364)
+- INFO -  [P-2] ----- extract atom phenomena: 28/28 new triples (1122, 0:00:00.127231)
+- INFO -  [P-2] ----- propagate atom relations: 35/96 new triples (1157, 0:00:01.611686)
 - INFO -  [P-2] --- Sequence: classification sequence (1)
-- DEBUG -  [P-2] ----- classify modality phenomena: 0/0 new triple (1157, 0:00:00.026829)
-- INFO -  [P-2] ----- reclassify argument property to class: 11/14 new triples (1168, 0:00:00.066731)
+- DEBUG -  [P-2] ----- classify modality phenomena: 0/0 new triple (1157, 0:00:00.020027)
+- INFO -  [P-2] ----- reclassify argument property to class: 11/14 new triples (1168, 0:00:00.069746)
 - INFO -  [P-2] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-2] ----- analyze "polarity" phenomena (1): 0/0 new triple (1168, 0:00:00.008896)
-- DEBUG -  [P-2] ----- analyze "polarity" phenomena (2): 0/0 new triple (1168, 0:00:00.020082)
-- DEBUG -  [P-2] ----- analyze "polarity" phenomena (3): 0/0 new triple (1168, 0:00:00.016854)
-- DEBUG -  [P-2] ----- analyze "polarity" phenomena (4): 0/0 new triple (1168, 0:00:00.034879)
-- DEBUG -  [P-2] ----- analyze "polarity" phenomena (5): 0/0 new triple (1168, 0:00:00.035288)
-- INFO -  [P-2] ----- analyze modifier phenomena (mod): 43/50 new triples (1211, 0:00:00.212211)
-- DEBUG -  [P-2] ----- classify modality phenomena: 0/0 new triple (1211, 0:00:00.020774)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (1): 0/0 new triple (1168, 0:00:00.009984)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (2): 0/0 new triple (1168, 0:00:00.021068)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (3): 0/0 new triple (1168, 0:00:00.016870)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (4): 0/0 new triple (1168, 0:00:00.035138)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (5): 0/0 new triple (1168, 0:00:00.039695)
+- INFO -  [P-2] ----- analyze modifier phenomena (mod): 43/50 new triples (1211, 0:00:00.182219)
+- DEBUG -  [P-2] ----- classify modality phenomena: 0/0 new triple (1211, 0:00:00.019961)
 - INFO -  [P-2] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-2] ----- analyze "or" phenomena (1): 0/0 new triple (1211, 0:00:00.013589)
-- DEBUG -  [P-2] ----- analyze "or" phenomena (2): 0/0 new triple (1211, 0:00:00.011362)
-- INFO -  [P-2] ----- analyze "and" phenomena (1): 5/50 new triples (1216, 0:00:00.171727)
-- DEBUG -  [P-2] ----- analyze "and" phenomena (2): 0/0 new triple (1216, 0:00:00.012838)
+- DEBUG -  [P-2] ----- analyze "or" phenomena (1): 0/0 new triple (1211, 0:00:00.013472)
+- DEBUG -  [P-2] ----- analyze "or" phenomena (2): 0/0 new triple (1211, 0:00:00.012230)
+- INFO -  [P-2] ----- analyze "and" phenomena (1): 5/50 new triples (1216, 0:00:00.149148)
+- DEBUG -  [P-2] ----- analyze "and" phenomena (2): 0/0 new triple (1216, 0:00:00.012987)
 - INFO -  [P-2] --- Sequence: composite class extraction sequence
-- DEBUG -  [P-2] ----- extract composite classes (1): 0/0 new triple (1216, 0:00:00.036733)
-- DEBUG -  [P-2] ----- extract composite classes (2): 0/0 new triple (1216, 0:00:00.034085)
+- DEBUG -  [P-2] ----- extract composite classes (1): 0/0 new triple (1216, 0:00:00.030638)
+- DEBUG -  [P-2] ----- extract composite classes (2): 0/0 new triple (1216, 0:00:00.029559)
 - INFO -  [P-2] --- Sequence: classification sequence (2)
-- INFO -  [P-2] ----- classify class net as entity from core arguments: 24/132 new triples (1240, 0:00:00.439811)
-- DEBUG -  [P-2] ----- classify class net as entity from :part relation: 0/0 new triple (1240, 0:00:00.022826)
-- DEBUG -  [P-2] ----- classify class net as entity from degree arguments: 0/0 new triple (1240, 0:00:00.033818)
-- DEBUG -  [P-2] ----- Associate mother to class net from :domain relation: 0/0 new triple (1240, 0:00:00.012149)
-- DEBUG -  [P-2] ----- Propagate individuals to net with same base node: 0/16 new triple (1240, 0:00:00.100779)
-- DEBUG -  [P-2] ----- Propagate individuals to net with domain link: 0/0 new triple (1240, 0:00:00.015046)
+- INFO -  [P-2] ----- classify class net as entity from core arguments: 24/132 new triples (1240, 0:00:00.340110)
+- DEBUG -  [P-2] ----- classify class net as entity from :part relation: 0/0 new triple (1240, 0:00:00.011377)
+- DEBUG -  [P-2] ----- classify class net as entity from degree arguments: 0/0 new triple (1240, 0:00:00.020249)
+- DEBUG -  [P-2] ----- Associate mother to class net from :domain relation: 0/0 new triple (1240, 0:00:00.010147)
+- DEBUG -  [P-2] ----- Propagate individuals to net with same base node: 0/16 new triple (1240, 0:00:00.084347)
+- DEBUG -  [P-2] ----- Propagate individuals to net with domain link: 0/0 new triple (1240, 0:00:00.008398)
 - DEBUG -  [P-2] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-2] ----- step: Transduction
 - DEBUG -  [P-2] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -241,9 +241,9 @@
 - DEBUG -  [P-2] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-2] -- Step 3: Generation
 - INFO -  [P-2] --- Sequence: OWL Generation Sequence
-- INFO -  [P-2] ----- generate OWL class: 39/50 new triples (1279, 0:00:00.580258)
-- INFO -  [P-2] ----- generate OWL property: 20/20 new triples (1299, 0:00:00.203180)
-- INFO -  [P-2] ----- generate OWL individual: 8/12 new triples (1307, 0:00:00.156731)
+- INFO -  [P-2] ----- generate OWL class: 39/50 new triples (1279, 0:00:00.440882)
+- INFO -  [P-2] ----- generate OWL property: 20/20 new triples (1299, 0:00:00.163856)
+- INFO -  [P-2] ----- generate OWL individual: 8/12 new triples (1307, 0:00:00.126677)
 - DEBUG -  [P-2] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-2] ----- step: Generation
 - DEBUG -  [P-2] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -276,33 +276,83 @@
 - DEBUG -  [P-3] ----- Total rule number: 0
 - INFO -  [P-3] -- Step 1: Preprocessing
 - INFO -  [P-3] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-3] ----- fix AMR bug (1): 0/0 new triple (637, 0:00:00.092680)
+- DEBUG -  [P-3] ----- fix AMR bug (1): 0/0 new triple (637, 0:00:00.014790)
 - INFO -  [P-3] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-3] ----- reclassify AMR-LD concept (1): 10/10 new triples (647, 0:00:00.130143)
-- INFO -  [P-3] ----- reclassify AMR-LD concept (2): 8/8 new triples (655, 0:00:00.051904)
-- INFO -  [P-3] ----- reclassify AMR-LD concept (3): 24/24 new triples (679, 0:00:00.038048)
-- INFO -  [P-3] ----- reclassify AMR-LD concept (4): 28/28 new triples (707, 0:00:00.047441)
-- INFO -  [P-3] ----- reclassify AMR-LD concept (5): 4/4 new triples (711, 0:00:00.035020)
-- DEBUG -  [P-3] ----- reify roles as concept: 0/0 new triple (711, 0:00:00.034280)
-- INFO -  [P-3] ----- reclassify existing variable: 85/85 new triples (796, 0:00:00.018951)
-- DEBUG -  [P-3] ----- add new variable for reified concept: 0/0 new triple (796, 0:00:00.046834)
-- INFO -  [P-3] ----- add AMR leaf for reclassified concept: 63/63 new triples (859, 0:00:00.032032)
-- DEBUG -  [P-3] ----- add AMR leaf for reified concept: 0/0 new triple (859, 0:00:00.010026)
-- INFO -  [P-3] ----- add AMR edge for core relation: 63/63 new triples (922, 0:00:00.114286)
-- DEBUG -  [P-3] ----- add AMR edge for reified concept: 0/0 new triple (922, 0:00:00.020183)
-- INFO -  [P-3] ----- add AMR edge for name relation: 5/5 new triples (927, 0:00:00.023231)
-- ERROR -  [P-3] *** *** **** Assertion Error *** *** *** 
- Object None must be an rdflib term
-- ERROR -  [P-3] *** Error while processing extraction (apply_step) ***
-- DEBUG -  [P-3] ----- step_name = Preprocessing
-- DEBUG -  [P-3] ----- len(step_sequence_def) = 2
-- DEBUG -  [P-3] ----- last sequence def = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]
-- ERROR -  [P-3]  *** Error while processing extraction (apply) ***
-- DEBUG -  [P-3] ----- config.extraction_scheme = owl_amr_scheme_1
-- DEBUG -  [P-3] ----- rule_dir = amr_master_rule/
-- DEBUG -  [P-3] ----- scheme = {'Preprocessing': [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]], 'Transduction': [['atomic extraction sequence', <function extract_atom_class at 0x7f64b5fea980>, <function extract_atom_individual at 0x7f64b5feafc0>, <function extract_atom_property at 0x7f64b5feb7e0>, <function extract_atom_value at 0x7f64b5febe20>, <function extract_atom_phenomena at 0x7f64b5fe0400>, <function propagate_atom_relation at 0x7f64b5fe0860>], ['classification sequence (1)', <function classify_modality_phenomena at 0x7f64b5fe13a0>, <function reclassify_argument_property_to_class at 0x7f64b5fe16c0>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f64b5fe2a20>, <function analyze_phenomena_polarity_2 at 0x7f64b5fe2d40>, <function analyze_phenomena_polarity_3 at 0x7f64b5fe3060>, <function analyze_phenomena_polarity_4 at 0x7f64b5fe3380>, <function analyze_phenomena_polarity_5 at 0x7f64b5fe36a0>, <function analyze_phenomena_mod_1 at 0x7f64b5fe3d80>, <function classify_modality_phenomena at 0x7f64b5fe13a0>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f64b5f48540>, <function analyze_phenomena_or_2 at 0x7f64b5f48cc0>, <function analyze_phenomena_and_1 at 0x7f64b5f49260>, <function analyze_phenomena_and_2 at 0x7f64b5f49760>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f64b5fe0cc0>, <function extract_composite_class_2 at 0x7f64b5fe1120>], ['classification sequence (2)', <function classify_entity_from_core_arguments at 0x7f64b5fe1940>, <function classify_entity_from_part_relation at 0x7f64b5fe1c60>, <function classify_entity_from_degree_arguments at 0x7f64b5fe1ee0>, <function classify_mother_from_domain_relation at 0x7f64b5fe2160>, <function propagate_individual_1 at 0x7f64b5fe23e0>, <function propagate_individual_2 at 0x7f64b5fe2480>]], 'Generation': [['OWL Generation Sequence', <function generate_owl_class at 0x7f64b5f4b060>, <function generate_owl_property at 0x7f64b5f4a160>, <function generate_owl_individual at 0x7f64b5f4b880>]]}
-- DEBUG -  [P-3] ----- step = Preprocessing, [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]]
-- INFO -  [P-3] Failure
+- INFO -  [P-3] ----- reclassify AMR-LD concept (1): 10/10 new triples (647, 0:00:00.104510)
+- INFO -  [P-3] ----- reclassify AMR-LD concept (2): 8/8 new triples (655, 0:00:00.045477)
+- INFO -  [P-3] ----- reclassify AMR-LD concept (3): 24/24 new triples (679, 0:00:00.029176)
+- INFO -  [P-3] ----- reclassify AMR-LD concept (4): 28/28 new triples (707, 0:00:00.050387)
+- INFO -  [P-3] ----- reclassify AMR-LD concept (5): 4/4 new triples (711, 0:00:00.029328)
+- DEBUG -  [P-3] ----- reify roles as concept: 0/0 new triple (711, 0:00:00.109989)
+- INFO -  [P-3] ----- reclassify existing variable: 85/85 new triples (796, 0:00:00.023376)
+- DEBUG -  [P-3] ----- add new variable for reified concept: 0/0 new triple (796, 0:00:00.050933)
+- INFO -  [P-3] ----- add AMR leaf for reclassified concept: 63/63 new triples (859, 0:00:00.029961)
+- DEBUG -  [P-3] ----- add AMR leaf for reified concept: 0/0 new triple (859, 0:00:00.010982)
+- INFO -  [P-3] ----- add AMR edge for core relation: 63/63 new triples (922, 0:00:00.123189)
+- DEBUG -  [P-3] ----- add AMR edge for reified concept: 0/0 new triple (922, 0:00:00.020064)
+- INFO -  [P-3] ----- add AMR edge for name relation: 5/5 new triples (927, 0:00:00.024866)
+- INFO -  [P-3] ----- add AMR edge for quant relation: 5/5 new triples (932, 0:00:00.023101)
+- INFO -  [P-3] ----- add AMR edge for polarity relation: 5/5 new triples (937, 0:00:00.029608)
+- INFO -  [P-3] ----- update AMR edge role 1: 24/24 new triples (961, 0:00:00.106412)
+- INFO -  [P-3] ----- add AMR root: 5/5 new triples (966, 0:00:00.011170)
+- DEBUG -  [P-3] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-3] ----- step: Preprocessing
+- DEBUG -  [P-3] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-3] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-3] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-3] -- Step 2: Transduction
+- INFO -  [P-3] --- Sequence: atomic extraction sequence
+- INFO -  [P-3] ----- extract atom classes: 54/54 new triples (1020, 0:00:00.258148)
+- INFO -  [P-3] ----- extract atom individuals: 8/8 new triples (1028, 0:00:00.049343)
+- INFO -  [P-3] ----- extract atomic properties: 112/112 new triples (1140, 0:00:00.322872)
+- INFO -  [P-3] ----- extract atom values: 15/15 new triples (1155, 0:00:00.074516)
+- INFO -  [P-3] ----- extract atom phenomena: 21/21 new triples (1176, 0:00:00.091319)
+- INFO -  [P-3] ----- propagate atom relations: 38/118 new triples (1214, 0:00:01.677387)
+- INFO -  [P-3] --- Sequence: classification sequence (1)
+- DEBUG -  [P-3] ----- classify modality phenomena: 0/0 new triple (1214, 0:00:00.025082)
+- INFO -  [P-3] ----- reclassify argument property to class: 21/26 new triples (1235, 0:00:00.114292)
+- INFO -  [P-3] --- Sequence: phenomena analyze sequence (1)
+- INFO -  [P-3] ----- analyze "polarity" phenomena (1): 33/38 new triples (1268, 0:00:00.095644)
+- DEBUG -  [P-3] ----- analyze "polarity" phenomena (2): 0/0 new triple (1268, 0:00:00.017129)
+- DEBUG -  [P-3] ----- analyze "polarity" phenomena (3): 0/0 new triple (1268, 0:00:00.020474)
+- DEBUG -  [P-3] ----- analyze "polarity" phenomena (4): 0/0 new triple (1268, 0:00:00.036636)
+- DEBUG -  [P-3] ----- analyze "polarity" phenomena (5): 0/0 new triple (1268, 0:00:00.040615)
+- DEBUG -  [P-3] ----- analyze modifier phenomena (mod): 0/0 new triple (1268, 0:00:00.011956)
+- DEBUG -  [P-3] ----- classify modality phenomena: 0/0 new triple (1268, 0:00:00.023440)
+- INFO -  [P-3] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-3] ----- analyze "or" phenomena (1): 0/0 new triple (1268, 0:00:00.013125)
+- DEBUG -  [P-3] ----- analyze "or" phenomena (2): 0/0 new triple (1268, 0:00:00.014570)
+- DEBUG -  [P-3] ----- analyze "and" phenomena (1): 0/0 new triple (1268, 0:00:00.011793)
+- DEBUG -  [P-3] ----- analyze "and" phenomena (2): 0/0 new triple (1268, 0:00:00.011281)
+- INFO -  [P-3] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-3] ----- extract composite classes (1): 0/0 new triple (1268, 0:00:00.034797)
+- INFO -  [P-3] ----- extract composite classes (2): 47/50 new triples (1315, 0:00:00.219447)
+- INFO -  [P-3] --- Sequence: classification sequence (2)
+- INFO -  [P-3] ----- classify class net as entity from core arguments: 18/142 new triples (1333, 0:00:00.309739)
+- DEBUG -  [P-3] ----- classify class net as entity from :part relation: 0/0 new triple (1333, 0:00:00.010382)
+- DEBUG -  [P-3] ----- classify class net as entity from degree arguments: 0/0 new triple (1333, 0:00:00.017771)
+- DEBUG -  [P-3] ----- Associate mother to class net from :domain relation: 0/0 new triple (1333, 0:00:00.009623)
+- DEBUG -  [P-3] ----- Propagate individuals to net with same base node: 0/20 new triple (1333, 0:00:00.048212)
+- DEBUG -  [P-3] ----- Propagate individuals to net with domain link: 0/0 new triple (1333, 0:00:00.007882)
+- DEBUG -  [P-3] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-3] ----- step: Transduction
+- DEBUG -  [P-3] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-3] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-3] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-3] -- Step 3: Generation
+- INFO -  [P-3] --- Sequence: OWL Generation Sequence
+- INFO -  [P-3] ----- generate OWL class: 50/54 new triples (1383, 0:00:00.476195)
+- INFO -  [P-3] ----- generate OWL property: 25/27 new triples (1408, 0:00:00.238155)
+- INFO -  [P-3] ----- generate OWL individual: 4/4 new triples (1412, 0:00:00.054224)
+- DEBUG -  [P-3] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-3] ----- step: Generation
+- DEBUG -  [P-3] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-3] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-3] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- DEBUG -  [P-3] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-3] ----- Number of factoids: 85
+- DEBUG -  [P-3] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-3] Success (85 extracted triple(s))
 - INFO - 
  [P-4]     *** extraction from sentence 4 *** 
 - INFO -  [P-4] -- Work Structure Preparation
@@ -326,33 +376,83 @@
 - DEBUG -  [P-4] ----- Total rule number: 0
 - INFO -  [P-4] -- Step 1: Preprocessing
 - INFO -  [P-4] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-4] ----- fix AMR bug (1): 0/0 new triple (607, 0:00:00.017148)
+- DEBUG -  [P-4] ----- fix AMR bug (1): 0/0 new triple (607, 0:00:00.016181)
 - INFO -  [P-4] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- DEBUG -  [P-4] ----- reclassify AMR-LD concept (1): 0/0 new triple (607, 0:00:00.103592)
-- INFO -  [P-4] ----- reclassify AMR-LD concept (2): 4/4 new triples (611, 0:00:00.049220)
-- INFO -  [P-4] ----- reclassify AMR-LD concept (3): 12/12 new triples (623, 0:00:00.027820)
-- INFO -  [P-4] ----- reclassify AMR-LD concept (4): 36/36 new triples (659, 0:00:00.045124)
-- DEBUG -  [P-4] ----- reclassify AMR-LD concept (5): 0/0 new triple (659, 0:00:00.032048)
-- DEBUG -  [P-4] ----- reify roles as concept: 0/0 new triple (659, 0:00:00.037234)
-- INFO -  [P-4] ----- reclassify existing variable: 53/53 new triples (712, 0:00:00.017859)
-- DEBUG -  [P-4] ----- add new variable for reified concept: 0/0 new triple (712, 0:00:00.050052)
-- INFO -  [P-4] ----- add AMR leaf for reclassified concept: 39/39 new triples (751, 0:00:00.020983)
-- DEBUG -  [P-4] ----- add AMR leaf for reified concept: 0/0 new triple (751, 0:00:00.010166)
-- INFO -  [P-4] ----- add AMR edge for core relation: 36/36 new triples (787, 0:00:00.090862)
-- DEBUG -  [P-4] ----- add AMR edge for reified concept: 0/0 new triple (787, 0:00:00.021228)
-- INFO -  [P-4] ----- add AMR edge for name relation: 5/5 new triples (792, 0:00:00.018065)
-- ERROR -  [P-4] *** *** **** Assertion Error *** *** *** 
- Object None must be an rdflib term
-- ERROR -  [P-4] *** Error while processing extraction (apply_step) ***
-- DEBUG -  [P-4] ----- step_name = Preprocessing
-- DEBUG -  [P-4] ----- len(step_sequence_def) = 2
-- DEBUG -  [P-4] ----- last sequence def = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]
-- ERROR -  [P-4]  *** Error while processing extraction (apply) ***
-- DEBUG -  [P-4] ----- config.extraction_scheme = owl_amr_scheme_1
-- DEBUG -  [P-4] ----- rule_dir = amr_master_rule/
-- DEBUG -  [P-4] ----- scheme = {'Preprocessing': [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]], 'Transduction': [['atomic extraction sequence', <function extract_atom_class at 0x7f64b5fea980>, <function extract_atom_individual at 0x7f64b5feafc0>, <function extract_atom_property at 0x7f64b5feb7e0>, <function extract_atom_value at 0x7f64b5febe20>, <function extract_atom_phenomena at 0x7f64b5fe0400>, <function propagate_atom_relation at 0x7f64b5fe0860>], ['classification sequence (1)', <function classify_modality_phenomena at 0x7f64b5fe13a0>, <function reclassify_argument_property_to_class at 0x7f64b5fe16c0>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f64b5fe2a20>, <function analyze_phenomena_polarity_2 at 0x7f64b5fe2d40>, <function analyze_phenomena_polarity_3 at 0x7f64b5fe3060>, <function analyze_phenomena_polarity_4 at 0x7f64b5fe3380>, <function analyze_phenomena_polarity_5 at 0x7f64b5fe36a0>, <function analyze_phenomena_mod_1 at 0x7f64b5fe3d80>, <function classify_modality_phenomena at 0x7f64b5fe13a0>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f64b5f48540>, <function analyze_phenomena_or_2 at 0x7f64b5f48cc0>, <function analyze_phenomena_and_1 at 0x7f64b5f49260>, <function analyze_phenomena_and_2 at 0x7f64b5f49760>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f64b5fe0cc0>, <function extract_composite_class_2 at 0x7f64b5fe1120>], ['classification sequence (2)', <function classify_entity_from_core_arguments at 0x7f64b5fe1940>, <function classify_entity_from_part_relation at 0x7f64b5fe1c60>, <function classify_entity_from_degree_arguments at 0x7f64b5fe1ee0>, <function classify_mother_from_domain_relation at 0x7f64b5fe2160>, <function propagate_individual_1 at 0x7f64b5fe23e0>, <function propagate_individual_2 at 0x7f64b5fe2480>]], 'Generation': [['OWL Generation Sequence', <function generate_owl_class at 0x7f64b5f4b060>, <function generate_owl_property at 0x7f64b5f4a160>, <function generate_owl_individual at 0x7f64b5f4b880>]]}
-- DEBUG -  [P-4] ----- step = Preprocessing, [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]]
-- INFO -  [P-4] Failure
+- DEBUG -  [P-4] ----- reclassify AMR-LD concept (1): 0/0 new triple (607, 0:00:00.088144)
+- INFO -  [P-4] ----- reclassify AMR-LD concept (2): 4/4 new triples (611, 0:00:00.047341)
+- INFO -  [P-4] ----- reclassify AMR-LD concept (3): 12/12 new triples (623, 0:00:00.029246)
+- INFO -  [P-4] ----- reclassify AMR-LD concept (4): 36/36 new triples (659, 0:00:00.050309)
+- DEBUG -  [P-4] ----- reclassify AMR-LD concept (5): 0/0 new triple (659, 0:00:00.026606)
+- DEBUG -  [P-4] ----- reify roles as concept: 0/0 new triple (659, 0:00:00.037080)
+- INFO -  [P-4] ----- reclassify existing variable: 53/53 new triples (712, 0:00:00.022589)
+- DEBUG -  [P-4] ----- add new variable for reified concept: 0/0 new triple (712, 0:00:00.045115)
+- INFO -  [P-4] ----- add AMR leaf for reclassified concept: 39/39 new triples (751, 0:00:00.020912)
+- DEBUG -  [P-4] ----- add AMR leaf for reified concept: 0/0 new triple (751, 0:00:00.014026)
+- INFO -  [P-4] ----- add AMR edge for core relation: 36/36 new triples (787, 0:00:00.086527)
+- DEBUG -  [P-4] ----- add AMR edge for reified concept: 0/0 new triple (787, 0:00:00.022329)
+- INFO -  [P-4] ----- add AMR edge for name relation: 5/5 new triples (792, 0:00:00.091792)
+- INFO -  [P-4] ----- add AMR edge for quant relation: 5/5 new triples (797, 0:00:00.026968)
+- DEBUG -  [P-4] ----- add AMR edge for polarity relation: 0/0 new triple (797, 0:00:00.032441)
+- INFO -  [P-4] ----- update AMR edge role 1: 11/11 new triples (808, 0:00:00.066989)
+- INFO -  [P-4] ----- add AMR root: 5/5 new triples (813, 0:00:00.010359)
+- DEBUG -  [P-4] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-4] ----- step: Preprocessing
+- DEBUG -  [P-4] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-4] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-4] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-4] -- Step 2: Transduction
+- INFO -  [P-4] --- Sequence: atomic extraction sequence
+- INFO -  [P-4] ----- extract atom classes: 54/54 new triples (867, 0:00:00.261073)
+- INFO -  [P-4] ----- extract atom individuals: 8/8 new triples (875, 0:00:00.043951)
+- INFO -  [P-4] ----- extract atomic properties: 49/49 new triples (924, 0:00:00.149645)
+- INFO -  [P-4] ----- extract atom values: 10/10 new triples (934, 0:00:00.052071)
+- DEBUG -  [P-4] ----- extract atom phenomena: 0/0 new triple (934, 0:00:00.010510)
+- INFO -  [P-4] ----- propagate atom relations: 20/52 new triples (954, 0:00:00.950580)
+- INFO -  [P-4] --- Sequence: classification sequence (1)
+- DEBUG -  [P-4] ----- classify modality phenomena: 0/0 new triple (954, 0:00:00.020851)
+- INFO -  [P-4] ----- reclassify argument property to class: 11/28 new triples (965, 0:00:00.115189)
+- INFO -  [P-4] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (1): 0/0 new triple (965, 0:00:00.007291)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (2): 0/0 new triple (965, 0:00:00.023313)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (3): 0/0 new triple (965, 0:00:00.019679)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (4): 0/0 new triple (965, 0:00:00.035202)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (5): 0/0 new triple (965, 0:00:00.039937)
+- INFO -  [P-4] ----- analyze modifier phenomena (mod): 45/56 new triples (1010, 0:00:00.174854)
+- DEBUG -  [P-4] ----- classify modality phenomena: 0/0 new triple (1010, 0:00:00.020462)
+- INFO -  [P-4] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-4] ----- analyze "or" phenomena (1): 0/0 new triple (1010, 0:00:00.012145)
+- DEBUG -  [P-4] ----- analyze "or" phenomena (2): 0/0 new triple (1010, 0:00:00.011575)
+- DEBUG -  [P-4] ----- analyze "and" phenomena (1): 0/0 new triple (1010, 0:00:00.011158)
+- DEBUG -  [P-4] ----- analyze "and" phenomena (2): 0/0 new triple (1010, 0:00:00.010509)
+- INFO -  [P-4] --- Sequence: composite class extraction sequence
+- INFO -  [P-4] ----- extract composite classes (1): 26/30 new triples (1036, 0:00:00.127549)
+- DEBUG -  [P-4] ----- extract composite classes (2): 0/0 new triple (1036, 0:00:00.030963)
+- INFO -  [P-4] --- Sequence: classification sequence (2)
+- INFO -  [P-4] ----- classify class net as entity from core arguments: 12/148 new triples (1048, 0:00:00.244220)
+- DEBUG -  [P-4] ----- classify class net as entity from :part relation: 0/0 new triple (1048, 0:00:00.008852)
+- DEBUG -  [P-4] ----- classify class net as entity from degree arguments: 0/0 new triple (1048, 0:00:00.016746)
+- DEBUG -  [P-4] ----- Associate mother to class net from :domain relation: 0/0 new triple (1048, 0:00:00.008989)
+- DEBUG -  [P-4] ----- Propagate individuals to net with same base node: 0/16 new triple (1048, 0:00:00.076893)
+- DEBUG -  [P-4] ----- Propagate individuals to net with domain link: 0/0 new triple (1048, 0:00:00.007972)
+- DEBUG -  [P-4] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-4] ----- step: Transduction
+- DEBUG -  [P-4] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-4] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-4] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-4] -- Step 3: Generation
+- INFO -  [P-4] --- Sequence: OWL Generation Sequence
+- INFO -  [P-4] ----- generate OWL class: 49/49 new triples (1097, 0:00:00.498629)
+- INFO -  [P-4] ----- generate OWL property: 12/12 new triples (1109, 0:00:00.170459)
+- INFO -  [P-4] ----- generate OWL individual: 8/12 new triples (1117, 0:00:00.132196)
+- DEBUG -  [P-4] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-4] ----- step: Generation
+- DEBUG -  [P-4] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-4] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-4] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- DEBUG -  [P-4] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-4] ----- Number of factoids: 73
+- DEBUG -  [P-4] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-4] Success (73 extracted triple(s))
 - INFO - 
  [P-5]     *** extraction from sentence 5 *** 
 - INFO -  [P-5] -- Work Structure Preparation
@@ -376,33 +476,83 @@
 - DEBUG -  [P-5] ----- Total rule number: 0
 - INFO -  [P-5] -- Step 1: Preprocessing
 - INFO -  [P-5] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-5] ----- fix AMR bug (1): 0/0 new triple (600, 0:00:00.017005)
+- DEBUG -  [P-5] ----- fix AMR bug (1): 0/0 new triple (600, 0:00:00.015885)
 - INFO -  [P-5] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-5] ----- reclassify AMR-LD concept (1): 5/5 new triples (605, 0:00:00.152571)
-- DEBUG -  [P-5] ----- reclassify AMR-LD concept (2): 0/0 new triple (605, 0:00:00.052634)
-- INFO -  [P-5] ----- reclassify AMR-LD concept (3): 12/12 new triples (617, 0:00:00.027966)
-- INFO -  [P-5] ----- reclassify AMR-LD concept (4): 20/20 new triples (637, 0:00:00.048885)
-- INFO -  [P-5] ----- reclassify AMR-LD concept (5): 4/4 new triples (641, 0:00:00.029356)
-- INFO -  [P-5] ----- reify roles as concept: 5/5 new triples (646, 0:00:00.034347)
-- INFO -  [P-5] ----- reclassify existing variable: 49/49 new triples (695, 0:00:00.022513)
-- INFO -  [P-5] ----- add new variable for reified concept: 4/4 new triples (699, 0:00:00.045879)
-- INFO -  [P-5] ----- add AMR leaf for reclassified concept: 36/36 new triples (735, 0:00:00.018007)
-- INFO -  [P-5] ----- add AMR leaf for reified concept: 4/4 new triples (739, 0:00:00.010938)
-- INFO -  [P-5] ----- add AMR edge for core relation: 30/30 new triples (769, 0:00:00.103007)
-- INFO -  [P-5] ----- add AMR edge for reified concept: 6/6 new triples (775, 0:00:00.041093)
-- INFO -  [P-5] ----- add AMR edge for name relation: 5/5 new triples (780, 0:00:00.018102)
-- ERROR -  [P-5] *** *** **** Assertion Error *** *** *** 
- Object None must be an rdflib term
-- ERROR -  [P-5] *** Error while processing extraction (apply_step) ***
-- DEBUG -  [P-5] ----- step_name = Preprocessing
-- DEBUG -  [P-5] ----- len(step_sequence_def) = 2
-- DEBUG -  [P-5] ----- last sequence def = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]
-- ERROR -  [P-5]  *** Error while processing extraction (apply) ***
-- DEBUG -  [P-5] ----- config.extraction_scheme = owl_amr_scheme_1
-- DEBUG -  [P-5] ----- rule_dir = amr_master_rule/
-- DEBUG -  [P-5] ----- scheme = {'Preprocessing': [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]], 'Transduction': [['atomic extraction sequence', <function extract_atom_class at 0x7f64b5fea980>, <function extract_atom_individual at 0x7f64b5feafc0>, <function extract_atom_property at 0x7f64b5feb7e0>, <function extract_atom_value at 0x7f64b5febe20>, <function extract_atom_phenomena at 0x7f64b5fe0400>, <function propagate_atom_relation at 0x7f64b5fe0860>], ['classification sequence (1)', <function classify_modality_phenomena at 0x7f64b5fe13a0>, <function reclassify_argument_property_to_class at 0x7f64b5fe16c0>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f64b5fe2a20>, <function analyze_phenomena_polarity_2 at 0x7f64b5fe2d40>, <function analyze_phenomena_polarity_3 at 0x7f64b5fe3060>, <function analyze_phenomena_polarity_4 at 0x7f64b5fe3380>, <function analyze_phenomena_polarity_5 at 0x7f64b5fe36a0>, <function analyze_phenomena_mod_1 at 0x7f64b5fe3d80>, <function classify_modality_phenomena at 0x7f64b5fe13a0>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f64b5f48540>, <function analyze_phenomena_or_2 at 0x7f64b5f48cc0>, <function analyze_phenomena_and_1 at 0x7f64b5f49260>, <function analyze_phenomena_and_2 at 0x7f64b5f49760>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f64b5fe0cc0>, <function extract_composite_class_2 at 0x7f64b5fe1120>], ['classification sequence (2)', <function classify_entity_from_core_arguments at 0x7f64b5fe1940>, <function classify_entity_from_part_relation at 0x7f64b5fe1c60>, <function classify_entity_from_degree_arguments at 0x7f64b5fe1ee0>, <function classify_mother_from_domain_relation at 0x7f64b5fe2160>, <function propagate_individual_1 at 0x7f64b5fe23e0>, <function propagate_individual_2 at 0x7f64b5fe2480>]], 'Generation': [['OWL Generation Sequence', <function generate_owl_class at 0x7f64b5f4b060>, <function generate_owl_property at 0x7f64b5f4a160>, <function generate_owl_individual at 0x7f64b5f4b880>]]}
-- DEBUG -  [P-5] ----- step = Preprocessing, [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]]
-- INFO -  [P-5] Failure
+- INFO -  [P-5] ----- reclassify AMR-LD concept (1): 5/5 new triples (605, 0:00:00.081604)
+- DEBUG -  [P-5] ----- reclassify AMR-LD concept (2): 0/0 new triple (605, 0:00:00.048998)
+- INFO -  [P-5] ----- reclassify AMR-LD concept (3): 12/12 new triples (617, 0:00:00.030380)
+- INFO -  [P-5] ----- reclassify AMR-LD concept (4): 20/20 new triples (637, 0:00:00.045739)
+- INFO -  [P-5] ----- reclassify AMR-LD concept (5): 4/4 new triples (641, 0:00:00.032092)
+- INFO -  [P-5] ----- reify roles as concept: 5/5 new triples (646, 0:00:00.035800)
+- INFO -  [P-5] ----- reclassify existing variable: 49/49 new triples (695, 0:00:00.016601)
+- INFO -  [P-5] ----- add new variable for reified concept: 4/4 new triples (699, 0:00:00.049274)
+- INFO -  [P-5] ----- add AMR leaf for reclassified concept: 36/36 new triples (735, 0:00:00.018264)
+- INFO -  [P-5] ----- add AMR leaf for reified concept: 4/4 new triples (739, 0:00:00.010978)
+- INFO -  [P-5] ----- add AMR edge for core relation: 30/30 new triples (769, 0:00:00.085838)
+- INFO -  [P-5] ----- add AMR edge for reified concept: 6/6 new triples (775, 0:00:00.042444)
+- INFO -  [P-5] ----- add AMR edge for name relation: 5/5 new triples (780, 0:00:00.023225)
+- DEBUG -  [P-5] ----- add AMR edge for quant relation: 0/0 new triple (780, 0:00:00.022233)
+- DEBUG -  [P-5] ----- add AMR edge for polarity relation: 0/0 new triple (780, 0:00:00.027354)
+- INFO -  [P-5] ----- update AMR edge role 1: 13/13 new triples (793, 0:00:00.059799)
+- INFO -  [P-5] ----- add AMR root: 5/5 new triples (798, 0:00:00.009170)
+- DEBUG -  [P-5] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-5] ----- step: Preprocessing
+- DEBUG -  [P-5] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-5] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-5] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-5] -- Step 2: Transduction
+- INFO -  [P-5] --- Sequence: atomic extraction sequence
+- INFO -  [P-5] ----- extract atom classes: 48/48 new triples (846, 0:00:00.229285)
+- INFO -  [P-5] ----- extract atom individuals: 8/8 new triples (854, 0:00:00.044282)
+- INFO -  [P-5] ----- extract atomic properties: 51/51 new triples (905, 0:00:00.140591)
+- INFO -  [P-5] ----- extract atom values: 5/5 new triples (910, 0:00:00.028833)
+- INFO -  [P-5] ----- extract atom phenomena: 7/7 new triples (917, 0:00:00.039203)
+- INFO -  [P-5] ----- propagate atom relations: 23/62 new triples (940, 0:00:01.009673)
+- INFO -  [P-5] --- Sequence: classification sequence (1)
+- DEBUG -  [P-5] ----- classify modality phenomena: 0/0 new triple (940, 0:00:00.021057)
+- DEBUG -  [P-5] ----- reclassify argument property to class: 0/0 new triple (940, 0:00:00.026532)
+- INFO -  [P-5] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (1): 0/0 new triple (940, 0:00:00.008285)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (2): 0/0 new triple (940, 0:00:00.018082)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (3): 0/0 new triple (940, 0:00:00.016813)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (4): 0/0 new triple (940, 0:00:00.034187)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (5): 0/0 new triple (940, 0:00:00.040746)
+- INFO -  [P-5] ----- analyze modifier phenomena (mod): 21/24 new triples (961, 0:00:00.091933)
+- DEBUG -  [P-5] ----- classify modality phenomena: 0/0 new triple (961, 0:00:00.020235)
+- INFO -  [P-5] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-5] ----- analyze "or" phenomena (1): 0/0 new triple (961, 0:00:00.011235)
+- DEBUG -  [P-5] ----- analyze "or" phenomena (2): 0/0 new triple (961, 0:00:00.012535)
+- DEBUG -  [P-5] ----- analyze "and" phenomena (1): 0/0 new triple (961, 0:00:00.012663)
+- DEBUG -  [P-5] ----- analyze "and" phenomena (2): 0/0 new triple (961, 0:00:00.010474)
+- INFO -  [P-5] --- Sequence: composite class extraction sequence
+- INFO -  [P-5] ----- extract composite classes (1): 23/24 new triples (984, 0:00:00.132017)
+- INFO -  [P-5] ----- extract composite classes (2): 25/28 new triples (1009, 0:00:00.126745)
+- INFO -  [P-5] --- Sequence: classification sequence (2)
+- INFO -  [P-5] ----- classify class net as entity from core arguments: 10/54 new triples (1019, 0:00:00.138487)
+- DEBUG -  [P-5] ----- classify class net as entity from :part relation: 0/0 new triple (1019, 0:00:00.009487)
+- DEBUG -  [P-5] ----- classify class net as entity from degree arguments: 0/0 new triple (1019, 0:00:00.020427)
+- DEBUG -  [P-5] ----- Associate mother to class net from :domain relation: 0/0 new triple (1019, 0:00:00.008956)
+- DEBUG -  [P-5] ----- Propagate individuals to net with same base node: 0/14 new triple (1019, 0:00:00.060038)
+- DEBUG -  [P-5] ----- Propagate individuals to net with domain link: 0/0 new triple (1019, 0:00:00.008466)
+- DEBUG -  [P-5] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-5] ----- step: Transduction
+- DEBUG -  [P-5] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-5] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-5] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-5] -- Step 3: Generation
+- INFO -  [P-5] --- Sequence: OWL Generation Sequence
+- INFO -  [P-5] ----- generate OWL class: 37/45 new triples (1056, 0:00:00.419502)
+- INFO -  [P-5] ----- generate OWL property: 16/16 new triples (1072, 0:00:00.135404)
+- INFO -  [P-5] ----- generate OWL individual: 6/8 new triples (1078, 0:00:00.085108)
+- DEBUG -  [P-5] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-5] ----- step: Generation
+- DEBUG -  [P-5] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-5] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-5] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- DEBUG -  [P-5] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-5] ----- Number of factoids: 69
+- DEBUG -  [P-5] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-5] Success (69 extracted triple(s))
 - INFO - 
  [P-6]     *** extraction from sentence 6 *** 
 - INFO -  [P-6] -- Work Structure Preparation
@@ -426,25 +576,25 @@
 - DEBUG -  [P-6] ----- Total rule number: 0
 - INFO -  [P-6] -- Step 1: Preprocessing
 - INFO -  [P-6] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-6] ----- fix AMR bug (1): 0/0 new triple (616, 0:00:00.014307)
+- DEBUG -  [P-6] ----- fix AMR bug (1): 0/0 new triple (616, 0:00:00.016548)
 - INFO -  [P-6] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-6] ----- reclassify AMR-LD concept (1): 10/10 new triples (626, 0:00:00.087973)
-- INFO -  [P-6] ----- reclassify AMR-LD concept (2): 4/4 new triples (630, 0:00:00.051885)
-- INFO -  [P-6] ----- reclassify AMR-LD concept (3): 4/4 new triples (634, 0:00:00.027955)
-- INFO -  [P-6] ----- reclassify AMR-LD concept (4): 28/28 new triples (662, 0:00:00.051268)
-- INFO -  [P-6] ----- reclassify AMR-LD concept (5): 4/4 new triples (666, 0:00:00.031106)
-- INFO -  [P-6] ----- reify roles as concept: 5/5 new triples (671, 0:00:00.035600)
-- INFO -  [P-6] ----- reclassify existing variable: 72/72 new triples (743, 0:00:00.018212)
-- INFO -  [P-6] ----- add new variable for reified concept: 4/4 new triples (747, 0:00:00.049968)
-- INFO -  [P-6] ----- add AMR leaf for reclassified concept: 51/51 new triples (798, 0:00:00.022944)
-- INFO -  [P-6] ----- add AMR leaf for reified concept: 4/4 new triples (802, 0:00:00.017575)
-- INFO -  [P-6] ----- add AMR edge for core relation: 45/45 new triples (847, 0:00:00.125485)
-- INFO -  [P-6] ----- add AMR edge for reified concept: 6/6 new triples (853, 0:00:00.067255)
-- INFO -  [P-6] ----- add AMR edge for name relation: 20/20 new triples (873, 0:00:00.026104)
-- DEBUG -  [P-6] ----- add AMR edge for quant relation: 0/0 new triple (873, 0:00:00.022867)
-- DEBUG -  [P-6] ----- add AMR edge for polarity relation: 0/0 new triple (873, 0:00:00.032236)
-- INFO -  [P-6] ----- update AMR edge role 1: 21/21 new triples (894, 0:00:00.175735)
-- INFO -  [P-6] ----- add AMR root: 5/5 new triples (899, 0:00:00.014329)
+- INFO -  [P-6] ----- reclassify AMR-LD concept (1): 10/10 new triples (626, 0:00:00.090890)
+- INFO -  [P-6] ----- reclassify AMR-LD concept (2): 4/4 new triples (630, 0:00:00.045079)
+- INFO -  [P-6] ----- reclassify AMR-LD concept (3): 4/4 new triples (634, 0:00:00.030905)
+- INFO -  [P-6] ----- reclassify AMR-LD concept (4): 28/28 new triples (662, 0:00:00.053272)
+- INFO -  [P-6] ----- reclassify AMR-LD concept (5): 4/4 new triples (666, 0:00:00.027449)
+- INFO -  [P-6] ----- reify roles as concept: 5/5 new triples (671, 0:00:00.043097)
+- INFO -  [P-6] ----- reclassify existing variable: 72/72 new triples (743, 0:00:00.019568)
+- INFO -  [P-6] ----- add new variable for reified concept: 4/4 new triples (747, 0:00:00.043162)
+- INFO -  [P-6] ----- add AMR leaf for reclassified concept: 51/51 new triples (798, 0:00:00.029445)
+- INFO -  [P-6] ----- add AMR leaf for reified concept: 4/4 new triples (802, 0:00:00.011581)
+- INFO -  [P-6] ----- add AMR edge for core relation: 45/45 new triples (847, 0:00:00.106697)
+- INFO -  [P-6] ----- add AMR edge for reified concept: 6/6 new triples (853, 0:00:00.069738)
+- INFO -  [P-6] ----- add AMR edge for name relation: 20/20 new triples (873, 0:00:00.021566)
+- DEBUG -  [P-6] ----- add AMR edge for quant relation: 0/0 new triple (873, 0:00:00.024880)
+- DEBUG -  [P-6] ----- add AMR edge for polarity relation: 0/0 new triple (873, 0:00:00.028566)
+- INFO -  [P-6] ----- update AMR edge role 1: 21/21 new triples (894, 0:00:00.091117)
+- INFO -  [P-6] ----- add AMR root: 5/5 new triples (899, 0:00:00.009778)
 - DEBUG -  [P-6] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-6] ----- step: Preprocessing
 - DEBUG -  [P-6] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -452,38 +602,38 @@
 - DEBUG -  [P-6] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-6] -- Step 2: Transduction
 - INFO -  [P-6] --- Sequence: atomic extraction sequence
-- INFO -  [P-6] ----- extract atom classes: 72/72 new triples (971, 0:00:00.373721)
-- INFO -  [P-6] ----- extract atom individuals: 32/32 new triples (1003, 0:00:00.216158)
-- INFO -  [P-6] ----- extract atomic properties: 38/38 new triples (1041, 0:00:00.105062)
-- INFO -  [P-6] ----- extract atom values: 20/20 new triples (1061, 0:00:00.093406)
-- INFO -  [P-6] ----- extract atom phenomena: 21/21 new triples (1082, 0:00:00.101924)
-- INFO -  [P-6] ----- propagate atom relations: 40/124 new triples (1122, 0:00:02.054124)
+- INFO -  [P-6] ----- extract atom classes: 72/72 new triples (971, 0:00:00.430637)
+- INFO -  [P-6] ----- extract atom individuals: 32/32 new triples (1003, 0:00:00.140312)
+- INFO -  [P-6] ----- extract atomic properties: 38/38 new triples (1041, 0:00:00.115183)
+- INFO -  [P-6] ----- extract atom values: 20/20 new triples (1061, 0:00:00.099859)
+- INFO -  [P-6] ----- extract atom phenomena: 21/21 new triples (1082, 0:00:00.100964)
+- INFO -  [P-6] ----- propagate atom relations: 40/124 new triples (1122, 0:00:01.767521)
 - INFO -  [P-6] --- Sequence: classification sequence (1)
-- DEBUG -  [P-6] ----- classify modality phenomena: 0/0 new triple (1122, 0:00:00.026250)
-- DEBUG -  [P-6] ----- reclassify argument property to class: 0/0 new triple (1122, 0:00:00.030275)
+- DEBUG -  [P-6] ----- classify modality phenomena: 0/0 new triple (1122, 0:00:00.024956)
+- DEBUG -  [P-6] ----- reclassify argument property to class: 0/0 new triple (1122, 0:00:00.026945)
 - INFO -  [P-6] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-6] ----- analyze "polarity" phenomena (1): 0/0 new triple (1122, 0:00:00.017742)
-- DEBUG -  [P-6] ----- analyze "polarity" phenomena (2): 0/0 new triple (1122, 0:00:00.023445)
-- DEBUG -  [P-6] ----- analyze "polarity" phenomena (3): 0/0 new triple (1122, 0:00:00.030337)
-- DEBUG -  [P-6] ----- analyze "polarity" phenomena (4): 0/0 new triple (1122, 0:00:00.065292)
-- DEBUG -  [P-6] ----- analyze "polarity" phenomena (5): 0/0 new triple (1122, 0:00:00.050038)
-- INFO -  [P-6] ----- analyze modifier phenomena (mod): 42/48 new triples (1164, 0:00:00.175212)
-- DEBUG -  [P-6] ----- classify modality phenomena: 0/0 new triple (1164, 0:00:00.021175)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (1): 0/0 new triple (1122, 0:00:00.007512)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (2): 0/0 new triple (1122, 0:00:00.017530)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (3): 0/0 new triple (1122, 0:00:00.016255)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (4): 0/0 new triple (1122, 0:00:00.039206)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (5): 0/0 new triple (1122, 0:00:00.036820)
+- INFO -  [P-6] ----- analyze modifier phenomena (mod): 42/48 new triples (1164, 0:00:00.183176)
+- DEBUG -  [P-6] ----- classify modality phenomena: 0/0 new triple (1164, 0:00:00.022049)
 - INFO -  [P-6] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-6] ----- analyze "or" phenomena (1): 0/0 new triple (1164, 0:00:00.011664)
-- DEBUG -  [P-6] ----- analyze "or" phenomena (2): 0/0 new triple (1164, 0:00:00.012559)
-- INFO -  [P-6] ----- analyze "and" phenomena (1): 10/106 new triples (1174, 0:00:00.398452)
-- INFO -  [P-6] ----- analyze "and" phenomena (2): 4/44 new triples (1178, 0:00:00.158823)
+- DEBUG -  [P-6] ----- analyze "or" phenomena (1): 0/0 new triple (1164, 0:00:00.013925)
+- DEBUG -  [P-6] ----- analyze "or" phenomena (2): 0/0 new triple (1164, 0:00:00.013945)
+- INFO -  [P-6] ----- analyze "and" phenomena (1): 10/106 new triples (1174, 0:00:00.531357)
+- INFO -  [P-6] ----- analyze "and" phenomena (2): 4/44 new triples (1178, 0:00:00.149994)
 - INFO -  [P-6] --- Sequence: composite class extraction sequence
-- DEBUG -  [P-6] ----- extract composite classes (1): 0/0 new triple (1178, 0:00:00.036844)
-- DEBUG -  [P-6] ----- extract composite classes (2): 0/0 new triple (1178, 0:00:00.032975)
+- DEBUG -  [P-6] ----- extract composite classes (1): 0/0 new triple (1178, 0:00:00.041048)
+- DEBUG -  [P-6] ----- extract composite classes (2): 0/0 new triple (1178, 0:00:00.034453)
 - INFO -  [P-6] --- Sequence: classification sequence (2)
-- INFO -  [P-6] ----- classify class net as entity from core arguments: 18/185 new triples (1196, 0:00:00.384444)
-- DEBUG -  [P-6] ----- classify class net as entity from :part relation: 0/0 new triple (1196, 0:00:00.010848)
-- DEBUG -  [P-6] ----- classify class net as entity from degree arguments: 0/0 new triple (1196, 0:00:00.018759)
-- DEBUG -  [P-6] ----- Associate mother to class net from :domain relation: 0/0 new triple (1196, 0:00:00.011581)
-- DEBUG -  [P-6] ----- Propagate individuals to net with same base node: 0/52 new triple (1196, 0:00:00.198061)
-- DEBUG -  [P-6] ----- Propagate individuals to net with domain link: 0/0 new triple (1196, 0:00:00.009618)
+- INFO -  [P-6] ----- classify class net as entity from core arguments: 18/185 new triples (1196, 0:00:00.309742)
+- DEBUG -  [P-6] ----- classify class net as entity from :part relation: 0/0 new triple (1196, 0:00:00.010597)
+- DEBUG -  [P-6] ----- classify class net as entity from degree arguments: 0/0 new triple (1196, 0:00:00.021454)
+- DEBUG -  [P-6] ----- Associate mother to class net from :domain relation: 0/0 new triple (1196, 0:00:00.011327)
+- DEBUG -  [P-6] ----- Propagate individuals to net with same base node: 0/52 new triple (1196, 0:00:00.179383)
+- DEBUG -  [P-6] ----- Propagate individuals to net with domain link: 0/0 new triple (1196, 0:00:00.011878)
 - DEBUG -  [P-6] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-6] ----- step: Transduction
 - DEBUG -  [P-6] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -491,9 +641,9 @@
 - DEBUG -  [P-6] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-6] -- Step 3: Generation
 - INFO -  [P-6] --- Sequence: OWL Generation Sequence
-- INFO -  [P-6] ----- generate OWL class: 38/38 new triples (1234, 0:00:00.426903)
-- INFO -  [P-6] ----- generate OWL property: 12/12 new triples (1246, 0:00:00.124748)
-- INFO -  [P-6] ----- generate OWL individual: 20/24 new triples (1266, 0:00:00.262835)
+- INFO -  [P-6] ----- generate OWL class: 38/38 new triples (1234, 0:00:00.391330)
+- INFO -  [P-6] ----- generate OWL property: 12/12 new triples (1246, 0:00:00.105387)
+- INFO -  [P-6] ----- generate OWL individual: 20/24 new triples (1266, 0:00:00.254022)
 - DEBUG -  [P-6] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-6] ----- step: Generation
 - DEBUG -  [P-6] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -526,25 +676,25 @@
 - DEBUG -  [P-7] ----- Total rule number: 0
 - INFO -  [P-7] -- Step 1: Preprocessing
 - INFO -  [P-7] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-7] ----- fix AMR bug (1): 0/0 new triple (592, 0:00:00.017023)
+- DEBUG -  [P-7] ----- fix AMR bug (1): 0/0 new triple (592, 0:00:00.035866)
 - INFO -  [P-7] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-7] ----- reclassify AMR-LD concept (1): 5/5 new triples (597, 0:00:00.092787)
-- INFO -  [P-7] ----- reclassify AMR-LD concept (2): 4/4 new triples (601, 0:00:00.048321)
-- DEBUG -  [P-7] ----- reclassify AMR-LD concept (3): 0/0 new triple (601, 0:00:00.027409)
-- INFO -  [P-7] ----- reclassify AMR-LD concept (4): 24/24 new triples (625, 0:00:00.048850)
-- INFO -  [P-7] ----- reclassify AMR-LD concept (5): 4/4 new triples (629, 0:00:00.027671)
-- INFO -  [P-7] ----- reify roles as concept: 5/5 new triples (634, 0:00:00.034989)
-- INFO -  [P-7] ----- reclassify existing variable: 40/40 new triples (674, 0:00:00.016803)
-- INFO -  [P-7] ----- add new variable for reified concept: 4/4 new triples (678, 0:00:00.051820)
-- INFO -  [P-7] ----- add AMR leaf for reclassified concept: 30/30 new triples (708, 0:00:00.015973)
-- INFO -  [P-7] ----- add AMR leaf for reified concept: 4/4 new triples (712, 0:00:00.011866)
-- INFO -  [P-7] ----- add AMR edge for core relation: 24/24 new triples (736, 0:00:00.082391)
-- INFO -  [P-7] ----- add AMR edge for reified concept: 6/6 new triples (742, 0:00:00.037734)
-- DEBUG -  [P-7] ----- add AMR edge for name relation: 0/0 new triple (742, 0:00:00.019969)
-- INFO -  [P-7] ----- add AMR edge for quant relation: 5/5 new triples (747, 0:00:00.019073)
-- DEBUG -  [P-7] ----- add AMR edge for polarity relation: 0/0 new triple (747, 0:00:00.024824)
-- INFO -  [P-7] ----- update AMR edge role 1: 10/10 new triples (757, 0:00:00.052684)
-- INFO -  [P-7] ----- add AMR root: 5/5 new triples (762, 0:00:00.010233)
+- INFO -  [P-7] ----- reclassify AMR-LD concept (1): 5/5 new triples (597, 0:00:00.079235)
+- INFO -  [P-7] ----- reclassify AMR-LD concept (2): 4/4 new triples (601, 0:00:00.048272)
+- DEBUG -  [P-7] ----- reclassify AMR-LD concept (3): 0/0 new triple (601, 0:00:00.029265)
+- INFO -  [P-7] ----- reclassify AMR-LD concept (4): 24/24 new triples (625, 0:00:00.049188)
+- INFO -  [P-7] ----- reclassify AMR-LD concept (5): 4/4 new triples (629, 0:00:00.029970)
+- INFO -  [P-7] ----- reify roles as concept: 5/5 new triples (634, 0:00:00.039811)
+- INFO -  [P-7] ----- reclassify existing variable: 40/40 new triples (674, 0:00:00.017904)
+- INFO -  [P-7] ----- add new variable for reified concept: 4/4 new triples (678, 0:00:00.044583)
+- INFO -  [P-7] ----- add AMR leaf for reclassified concept: 30/30 new triples (708, 0:00:00.016006)
+- INFO -  [P-7] ----- add AMR leaf for reified concept: 4/4 new triples (712, 0:00:00.011169)
+- INFO -  [P-7] ----- add AMR edge for core relation: 24/24 new triples (736, 0:00:00.080995)
+- INFO -  [P-7] ----- add AMR edge for reified concept: 6/6 new triples (742, 0:00:00.043078)
+- DEBUG -  [P-7] ----- add AMR edge for name relation: 0/0 new triple (742, 0:00:00.017730)
+- INFO -  [P-7] ----- add AMR edge for quant relation: 5/5 new triples (747, 0:00:00.018004)
+- DEBUG -  [P-7] ----- add AMR edge for polarity relation: 0/0 new triple (747, 0:00:00.027086)
+- INFO -  [P-7] ----- update AMR edge role 1: 10/10 new triples (757, 0:00:00.053367)
+- INFO -  [P-7] ----- add AMR root: 5/5 new triples (762, 0:00:00.015615)
 - DEBUG -  [P-7] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-7] ----- step: Preprocessing
 - DEBUG -  [P-7] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -552,38 +702,38 @@
 - DEBUG -  [P-7] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-7] -- Step 2: Transduction
 - INFO -  [P-7] --- Sequence: atomic extraction sequence
-- INFO -  [P-7] ----- extract atom classes: 48/48 new triples (810, 0:00:00.226707)
-- DEBUG -  [P-7] ----- extract atom individuals: 0/0 new triple (810, 0:00:00.017708)
-- INFO -  [P-7] ----- extract atomic properties: 24/24 new triples (834, 0:00:00.072702)
-- INFO -  [P-7] ----- extract atom values: 5/5 new triples (839, 0:00:00.029364)
-- INFO -  [P-7] ----- extract atom phenomena: 7/7 new triples (846, 0:00:00.037463)
-- INFO -  [P-7] ----- propagate atom relations: 18/38 new triples (864, 0:00:00.758793)
+- INFO -  [P-7] ----- extract atom classes: 48/48 new triples (810, 0:00:00.318370)
+- DEBUG -  [P-7] ----- extract atom individuals: 0/0 new triple (810, 0:00:00.016379)
+- INFO -  [P-7] ----- extract atomic properties: 24/24 new triples (834, 0:00:00.072862)
+- INFO -  [P-7] ----- extract atom values: 5/5 new triples (839, 0:00:00.033858)
+- INFO -  [P-7] ----- extract atom phenomena: 7/7 new triples (846, 0:00:00.036783)
+- INFO -  [P-7] ----- propagate atom relations: 18/38 new triples (864, 0:00:00.692472)
 - INFO -  [P-7] --- Sequence: classification sequence (1)
-- DEBUG -  [P-7] ----- classify modality phenomena: 0/0 new triple (864, 0:00:00.024713)
-- DEBUG -  [P-7] ----- reclassify argument property to class: 0/0 new triple (864, 0:00:00.028248)
+- DEBUG -  [P-7] ----- classify modality phenomena: 0/0 new triple (864, 0:00:00.019884)
+- DEBUG -  [P-7] ----- reclassify argument property to class: 0/0 new triple (864, 0:00:00.027350)
 - INFO -  [P-7] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-7] ----- analyze "polarity" phenomena (1): 0/0 new triple (864, 0:00:00.009097)
-- DEBUG -  [P-7] ----- analyze "polarity" phenomena (2): 0/0 new triple (864, 0:00:00.019532)
-- DEBUG -  [P-7] ----- analyze "polarity" phenomena (3): 0/0 new triple (864, 0:00:00.023672)
-- DEBUG -  [P-7] ----- analyze "polarity" phenomena (4): 0/0 new triple (864, 0:00:00.042102)
-- DEBUG -  [P-7] ----- analyze "polarity" phenomena (5): 0/0 new triple (864, 0:00:00.039211)
-- INFO -  [P-7] ----- analyze modifier phenomena (mod): 43/50 new triples (907, 0:00:00.180664)
-- DEBUG -  [P-7] ----- classify modality phenomena: 0/0 new triple (907, 0:00:00.022170)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (1): 0/0 new triple (864, 0:00:00.010567)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (2): 0/0 new triple (864, 0:00:00.017420)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (3): 0/0 new triple (864, 0:00:00.017452)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (4): 0/0 new triple (864, 0:00:00.035731)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (5): 0/0 new triple (864, 0:00:00.041597)
+- INFO -  [P-7] ----- analyze modifier phenomena (mod): 43/50 new triples (907, 0:00:00.175990)
+- DEBUG -  [P-7] ----- classify modality phenomena: 0/0 new triple (907, 0:00:00.020729)
 - INFO -  [P-7] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-7] ----- analyze "or" phenomena (1): 0/0 new triple (907, 0:00:00.023471)
-- DEBUG -  [P-7] ----- analyze "or" phenomena (2): 0/0 new triple (907, 0:00:00.021601)
-- DEBUG -  [P-7] ----- analyze "and" phenomena (1): 0/0 new triple (907, 0:00:00.018340)
-- DEBUG -  [P-7] ----- analyze "and" phenomena (2): 0/0 new triple (907, 0:00:00.021569)
+- DEBUG -  [P-7] ----- analyze "or" phenomena (1): 0/0 new triple (907, 0:00:00.011873)
+- DEBUG -  [P-7] ----- analyze "or" phenomena (2): 0/0 new triple (907, 0:00:00.011663)
+- DEBUG -  [P-7] ----- analyze "and" phenomena (1): 0/0 new triple (907, 0:00:00.011212)
+- DEBUG -  [P-7] ----- analyze "and" phenomena (2): 0/0 new triple (907, 0:00:00.010755)
 - INFO -  [P-7] --- Sequence: composite class extraction sequence
-- INFO -  [P-7] ----- extract composite classes (1): 25/27 new triples (932, 0:00:00.174681)
-- DEBUG -  [P-7] ----- extract composite classes (2): 0/0 new triple (932, 0:00:00.032893)
+- INFO -  [P-7] ----- extract composite classes (1): 25/27 new triples (932, 0:00:00.128109)
+- DEBUG -  [P-7] ----- extract composite classes (2): 0/0 new triple (932, 0:00:00.031278)
 - INFO -  [P-7] --- Sequence: classification sequence (2)
-- INFO -  [P-7] ----- classify class net as entity from core arguments: 12/45 new triples (944, 0:00:00.209726)
-- DEBUG -  [P-7] ----- classify class net as entity from :part relation: 0/0 new triple (944, 0:00:00.012399)
-- DEBUG -  [P-7] ----- classify class net as entity from degree arguments: 0/0 new triple (944, 0:00:00.029160)
-- INFO -  [P-7] ----- Associate mother to class net from :domain relation: 2/68 new triples (946, 0:00:00.232389)
-- DEBUG -  [P-7] ----- Propagate individuals to net with same base node: 0/4 new triple (946, 0:00:00.077564)
-- DEBUG -  [P-7] ----- Propagate individuals to net with domain link: 0/0 new triple (946, 0:00:00.014270)
+- INFO -  [P-7] ----- classify class net as entity from core arguments: 12/45 new triples (944, 0:00:00.137969)
+- DEBUG -  [P-7] ----- classify class net as entity from :part relation: 0/0 new triple (944, 0:00:00.008866)
+- DEBUG -  [P-7] ----- classify class net as entity from degree arguments: 0/0 new triple (944, 0:00:00.018449)
+- INFO -  [P-7] ----- Associate mother to class net from :domain relation: 2/68 new triples (946, 0:00:00.149481)
+- DEBUG -  [P-7] ----- Propagate individuals to net with same base node: 0/4 new triple (946, 0:00:00.042219)
+- DEBUG -  [P-7] ----- Propagate individuals to net with domain link: 0/0 new triple (946, 0:00:00.007821)
 - DEBUG -  [P-7] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-7] ----- step: Transduction
 - DEBUG -  [P-7] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -591,9 +741,9 @@
 - DEBUG -  [P-7] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-7] -- Step 3: Generation
 - INFO -  [P-7] --- Sequence: OWL Generation Sequence
-- INFO -  [P-7] ----- generate OWL class: 41/49 new triples (987, 0:00:00.461011)
-- INFO -  [P-7] ----- generate OWL property: 8/8 new triples (995, 0:00:00.096175)
-- INFO -  [P-7] ----- generate OWL individual: 4/8 new triples (999, 0:00:00.102579)
+- INFO -  [P-7] ----- generate OWL class: 41/49 new triples (987, 0:00:00.425305)
+- INFO -  [P-7] ----- generate OWL property: 8/8 new triples (995, 0:00:00.076380)
+- INFO -  [P-7] ----- generate OWL individual: 4/8 new triples (999, 0:00:00.084679)
 - DEBUG -  [P-7] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-7] ----- step: Generation
 - DEBUG -  [P-7] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -626,25 +776,25 @@
 - DEBUG -  [P-8] ----- Total rule number: 0
 - INFO -  [P-8] -- Step 1: Preprocessing
 - INFO -  [P-8] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-8] ----- fix AMR bug (1): 0/0 new triple (674, 0:00:00.018316)
+- DEBUG -  [P-8] ----- fix AMR bug (1): 0/0 new triple (674, 0:00:00.015525)
 - INFO -  [P-8] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-8] ----- reclassify AMR-LD concept (1): 15/15 new triples (689, 0:00:00.134630)
-- INFO -  [P-8] ----- reclassify AMR-LD concept (2): 8/8 new triples (697, 0:00:00.054810)
-- INFO -  [P-8] ----- reclassify AMR-LD concept (3): 20/20 new triples (717, 0:00:00.037849)
-- INFO -  [P-8] ----- reclassify AMR-LD concept (4): 52/52 new triples (769, 0:00:00.059524)
-- INFO -  [P-8] ----- reclassify AMR-LD concept (5): 4/4 new triples (773, 0:00:00.031438)
-- DEBUG -  [P-8] ----- reify roles as concept: 0/0 new triple (773, 0:00:00.044837)
-- INFO -  [P-8] ----- reclassify existing variable: 152/152 new triples (925, 0:00:00.024918)
-- DEBUG -  [P-8] ----- add new variable for reified concept: 0/0 new triple (925, 0:00:00.128479)
-- INFO -  [P-8] ----- add AMR leaf for reclassified concept: 111/111 new triples (1036, 0:00:00.059853)
-- DEBUG -  [P-8] ----- add AMR leaf for reified concept: 0/0 new triple (1036, 0:00:00.011129)
-- INFO -  [P-8] ----- add AMR edge for core relation: 108/108 new triples (1144, 0:00:00.209412)
-- DEBUG -  [P-8] ----- add AMR edge for reified concept: 0/0 new triple (1144, 0:00:00.020227)
-- INFO -  [P-8] ----- add AMR edge for name relation: 20/20 new triples (1164, 0:00:00.035332)
-- DEBUG -  [P-8] ----- add AMR edge for quant relation: 0/0 new triple (1164, 0:00:00.031823)
-- DEBUG -  [P-8] ----- add AMR edge for polarity relation: 0/0 new triple (1164, 0:00:00.040521)
-- INFO -  [P-8] ----- update AMR edge role 1: 39/39 new triples (1203, 0:00:00.147726)
-- INFO -  [P-8] ----- add AMR root: 5/5 new triples (1208, 0:00:00.010161)
+- INFO -  [P-8] ----- reclassify AMR-LD concept (1): 15/15 new triples (689, 0:00:00.201782)
+- INFO -  [P-8] ----- reclassify AMR-LD concept (2): 8/8 new triples (697, 0:00:00.047964)
+- INFO -  [P-8] ----- reclassify AMR-LD concept (3): 20/20 new triples (717, 0:00:00.030099)
+- INFO -  [P-8] ----- reclassify AMR-LD concept (4): 52/52 new triples (769, 0:00:00.055339)
+- INFO -  [P-8] ----- reclassify AMR-LD concept (5): 4/4 new triples (773, 0:00:00.029251)
+- DEBUG -  [P-8] ----- reify roles as concept: 0/0 new triple (773, 0:00:00.034427)
+- INFO -  [P-8] ----- reclassify existing variable: 152/152 new triples (925, 0:00:00.029268)
+- DEBUG -  [P-8] ----- add new variable for reified concept: 0/0 new triple (925, 0:00:00.048521)
+- INFO -  [P-8] ----- add AMR leaf for reclassified concept: 111/111 new triples (1036, 0:00:00.057722)
+- DEBUG -  [P-8] ----- add AMR leaf for reified concept: 0/0 new triple (1036, 0:00:00.012726)
+- INFO -  [P-8] ----- add AMR edge for core relation: 108/108 new triples (1144, 0:00:00.203458)
+- DEBUG -  [P-8] ----- add AMR edge for reified concept: 0/0 new triple (1144, 0:00:00.021857)
+- INFO -  [P-8] ----- add AMR edge for name relation: 20/20 new triples (1164, 0:00:00.032694)
+- DEBUG -  [P-8] ----- add AMR edge for quant relation: 0/0 new triple (1164, 0:00:00.035651)
+- DEBUG -  [P-8] ----- add AMR edge for polarity relation: 0/0 new triple (1164, 0:00:00.040110)
+- INFO -  [P-8] ----- update AMR edge role 1: 39/39 new triples (1203, 0:00:00.154411)
+- INFO -  [P-8] ----- add AMR root: 5/5 new triples (1208, 0:00:00.010907)
 - DEBUG -  [P-8] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-8] ----- step: Preprocessing
 - DEBUG -  [P-8] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -652,38 +802,38 @@
 - DEBUG -  [P-8] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-8] -- Step 2: Transduction
 - INFO -  [P-8] --- Sequence: atomic extraction sequence
-- INFO -  [P-8] ----- extract atom classes: 120/120 new triples (1328, 0:00:00.604253)
-- INFO -  [P-8] ----- extract atom individuals: 32/32 new triples (1360, 0:00:00.177310)
-- INFO -  [P-8] ----- extract atomic properties: 109/109 new triples (1469, 0:00:00.333212)
-- INFO -  [P-8] ----- extract atom values: 20/20 new triples (1489, 0:00:00.111082)
-- INFO -  [P-8] ----- extract atom phenomena: 56/56 new triples (1545, 0:00:00.246639)
-- INFO -  [P-8] ----- propagate atom relations: 57/196 new triples (1602, 0:00:03.693438)
+- INFO -  [P-8] ----- extract atom classes: 120/120 new triples (1328, 0:00:00.562895)
+- INFO -  [P-8] ----- extract atom individuals: 32/32 new triples (1360, 0:00:00.151252)
+- INFO -  [P-8] ----- extract atomic properties: 109/109 new triples (1469, 0:00:00.324606)
+- INFO -  [P-8] ----- extract atom values: 20/20 new triples (1489, 0:00:00.098246)
+- INFO -  [P-8] ----- extract atom phenomena: 56/56 new triples (1545, 0:00:00.244815)
+- INFO -  [P-8] ----- propagate atom relations: 57/196 new triples (1602, 0:00:03.728908)
 - INFO -  [P-8] --- Sequence: classification sequence (1)
-- DEBUG -  [P-8] ----- classify modality phenomena: 0/0 new triple (1602, 0:00:00.021306)
-- INFO -  [P-8] ----- reclassify argument property to class: 10/12 new triples (1612, 0:00:00.069149)
+- DEBUG -  [P-8] ----- classify modality phenomena: 0/0 new triple (1602, 0:00:00.021071)
+- INFO -  [P-8] ----- reclassify argument property to class: 10/12 new triples (1612, 0:00:00.070242)
 - INFO -  [P-8] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-8] ----- analyze "polarity" phenomena (1): 0/0 new triple (1612, 0:00:00.007764)
-- DEBUG -  [P-8] ----- analyze "polarity" phenomena (2): 0/0 new triple (1612, 0:00:00.016081)
-- DEBUG -  [P-8] ----- analyze "polarity" phenomena (3): 0/0 new triple (1612, 0:00:00.022223)
-- DEBUG -  [P-8] ----- analyze "polarity" phenomena (4): 0/0 new triple (1612, 0:00:00.035798)
-- DEBUG -  [P-8] ----- analyze "polarity" phenomena (5): 0/0 new triple (1612, 0:00:00.035731)
-- INFO -  [P-8] ----- analyze modifier phenomena (mod): 45/54 new triples (1657, 0:00:00.180590)
-- DEBUG -  [P-8] ----- classify modality phenomena: 0/0 new triple (1657, 0:00:00.023380)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (1): 0/0 new triple (1612, 0:00:00.010855)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (2): 0/0 new triple (1612, 0:00:00.019752)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (3): 0/0 new triple (1612, 0:00:00.017427)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (4): 0/0 new triple (1612, 0:00:00.036741)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (5): 0/0 new triple (1612, 0:00:00.043120)
+- INFO -  [P-8] ----- analyze modifier phenomena (mod): 45/54 new triples (1657, 0:00:00.178498)
+- DEBUG -  [P-8] ----- classify modality phenomena: 0/0 new triple (1657, 0:00:00.021483)
 - INFO -  [P-8] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-8] ----- analyze "or" phenomena (1): 0/0 new triple (1657, 0:00:00.018904)
-- DEBUG -  [P-8] ----- analyze "or" phenomena (2): 0/0 new triple (1657, 0:00:00.014848)
-- INFO -  [P-8] ----- analyze "and" phenomena (1): 6/54 new triples (1663, 0:00:00.435183)
-- INFO -  [P-8] ----- analyze "and" phenomena (2): 4/44 new triples (1667, 0:00:00.294955)
+- DEBUG -  [P-8] ----- analyze "or" phenomena (1): 0/0 new triple (1657, 0:00:00.012185)
+- DEBUG -  [P-8] ----- analyze "or" phenomena (2): 0/0 new triple (1657, 0:00:00.011273)
+- INFO -  [P-8] ----- analyze "and" phenomena (1): 6/54 new triples (1663, 0:00:00.419839)
+- INFO -  [P-8] ----- analyze "and" phenomena (2): 4/44 new triples (1667, 0:00:00.363847)
 - INFO -  [P-8] --- Sequence: composite class extraction sequence
-- DEBUG -  [P-8] ----- extract composite classes (1): 0/0 new triple (1667, 0:00:00.028594)
-- INFO -  [P-8] ----- extract composite classes (2): 87/106 new triples (1754, 0:00:00.574002)
+- DEBUG -  [P-8] ----- extract composite classes (1): 0/0 new triple (1667, 0:00:00.035244)
+- INFO -  [P-8] ----- extract composite classes (2): 87/106 new triples (1754, 0:00:00.402540)
 - INFO -  [P-8] --- Sequence: classification sequence (2)
-- INFO -  [P-8] ----- classify class net as entity from core arguments: 34/159 new triples (1788, 0:00:00.350801)
-- DEBUG -  [P-8] ----- classify class net as entity from :part relation: 0/0 new triple (1788, 0:00:00.011562)
-- DEBUG -  [P-8] ----- classify class net as entity from degree arguments: 0/0 new triple (1788, 0:00:00.021466)
-- DEBUG -  [P-8] ----- Associate mother to class net from :domain relation: 0/0 new triple (1788, 0:00:00.010671)
-- DEBUG -  [P-8] ----- Propagate individuals to net with same base node: 0/52 new triple (1788, 0:00:00.182430)
-- DEBUG -  [P-8] ----- Propagate individuals to net with domain link: 0/0 new triple (1788, 0:00:00.009958)
+- INFO -  [P-8] ----- classify class net as entity from core arguments: 34/159 new triples (1788, 0:00:00.359186)
+- DEBUG -  [P-8] ----- classify class net as entity from :part relation: 0/0 new triple (1788, 0:00:00.010142)
+- DEBUG -  [P-8] ----- classify class net as entity from degree arguments: 0/0 new triple (1788, 0:00:00.019421)
+- DEBUG -  [P-8] ----- Associate mother to class net from :domain relation: 0/0 new triple (1788, 0:00:00.009805)
+- DEBUG -  [P-8] ----- Propagate individuals to net with same base node: 0/52 new triple (1788, 0:00:00.189680)
+- DEBUG -  [P-8] ----- Propagate individuals to net with domain link: 0/0 new triple (1788, 0:00:00.011038)
 - DEBUG -  [P-8] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-8] ----- step: Transduction
 - DEBUG -  [P-8] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -691,9 +841,9 @@
 - DEBUG -  [P-8] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-8] -- Step 3: Generation
 - INFO -  [P-8] --- Sequence: OWL Generation Sequence
-- INFO -  [P-8] ----- generate OWL class: 90/102 new triples (1878, 0:00:00.919385)
-- INFO -  [P-8] ----- generate OWL property: 24/32 new triples (1902, 0:00:00.249335)
-- INFO -  [P-8] ----- generate OWL individual: 20/24 new triples (1922, 0:00:00.239445)
+- INFO -  [P-8] ----- generate OWL class: 90/102 new triples (1878, 0:00:00.970849)
+- INFO -  [P-8] ----- generate OWL property: 24/32 new triples (1902, 0:00:00.256500)
+- INFO -  [P-8] ----- generate OWL individual: 20/24 new triples (1922, 0:00:00.246318)
 - DEBUG -  [P-8] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-8] ----- step: Generation
 - DEBUG -  [P-8] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -726,25 +876,25 @@
 - DEBUG -  [P-9] ----- Total rule number: 0
 - INFO -  [P-9] -- Step 1: Preprocessing
 - INFO -  [P-9] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-9] ----- fix AMR bug (1): 0/0 new triple (598, 0:00:00.015705)
+- DEBUG -  [P-9] ----- fix AMR bug (1): 0/0 new triple (598, 0:00:00.014685)
 - INFO -  [P-9] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- DEBUG -  [P-9] ----- reclassify AMR-LD concept (1): 0/0 new triple (598, 0:00:00.080272)
-- INFO -  [P-9] ----- reclassify AMR-LD concept (2): 8/8 new triples (606, 0:00:00.041750)
-- INFO -  [P-9] ----- reclassify AMR-LD concept (3): 16/16 new triples (622, 0:00:00.029499)
-- INFO -  [P-9] ----- reclassify AMR-LD concept (4): 12/12 new triples (634, 0:00:00.043115)
-- INFO -  [P-9] ----- reclassify AMR-LD concept (5): 8/8 new triples (642, 0:00:00.032409)
-- DEBUG -  [P-9] ----- reify roles as concept: 0/0 new triple (642, 0:00:00.034510)
-- INFO -  [P-9] ----- reclassify existing variable: 45/45 new triples (687, 0:00:00.015398)
-- DEBUG -  [P-9] ----- add new variable for reified concept: 0/0 new triple (687, 0:00:00.044582)
-- INFO -  [P-9] ----- add AMR leaf for reclassified concept: 33/33 new triples (720, 0:00:00.016876)
-- DEBUG -  [P-9] ----- add AMR leaf for reified concept: 0/0 new triple (720, 0:00:00.012297)
-- INFO -  [P-9] ----- add AMR edge for core relation: 30/30 new triples (750, 0:00:00.088644)
-- DEBUG -  [P-9] ----- add AMR edge for reified concept: 0/0 new triple (750, 0:00:00.021709)
-- INFO -  [P-9] ----- add AMR edge for name relation: 5/5 new triples (755, 0:00:00.100779)
-- INFO -  [P-9] ----- add AMR edge for quant relation: 5/5 new triples (760, 0:00:00.021491)
-- DEBUG -  [P-9] ----- add AMR edge for polarity relation: 0/0 new triple (760, 0:00:00.032474)
-- INFO -  [P-9] ----- update AMR edge role 1: 11/11 new triples (771, 0:00:00.059285)
-- INFO -  [P-9] ----- add AMR root: 5/5 new triples (776, 0:00:00.010038)
+- DEBUG -  [P-9] ----- reclassify AMR-LD concept (1): 0/0 new triple (598, 0:00:00.083074)
+- INFO -  [P-9] ----- reclassify AMR-LD concept (2): 8/8 new triples (606, 0:00:00.042939)
+- INFO -  [P-9] ----- reclassify AMR-LD concept (3): 16/16 new triples (622, 0:00:00.029516)
+- INFO -  [P-9] ----- reclassify AMR-LD concept (4): 12/12 new triples (634, 0:00:00.121671)
+- INFO -  [P-9] ----- reclassify AMR-LD concept (5): 8/8 new triples (642, 0:00:00.039475)
+- DEBUG -  [P-9] ----- reify roles as concept: 0/0 new triple (642, 0:00:00.041777)
+- INFO -  [P-9] ----- reclassify existing variable: 45/45 new triples (687, 0:00:00.017424)
+- DEBUG -  [P-9] ----- add new variable for reified concept: 0/0 new triple (687, 0:00:00.047146)
+- INFO -  [P-9] ----- add AMR leaf for reclassified concept: 33/33 new triples (720, 0:00:00.018362)
+- DEBUG -  [P-9] ----- add AMR leaf for reified concept: 0/0 new triple (720, 0:00:00.011001)
+- INFO -  [P-9] ----- add AMR edge for core relation: 30/30 new triples (750, 0:00:00.085626)
+- DEBUG -  [P-9] ----- add AMR edge for reified concept: 0/0 new triple (750, 0:00:00.022951)
+- INFO -  [P-9] ----- add AMR edge for name relation: 5/5 new triples (755, 0:00:00.017383)
+- INFO -  [P-9] ----- add AMR edge for quant relation: 5/5 new triples (760, 0:00:00.021803)
+- DEBUG -  [P-9] ----- add AMR edge for polarity relation: 0/0 new triple (760, 0:00:00.030861)
+- INFO -  [P-9] ----- update AMR edge role 1: 11/11 new triples (771, 0:00:00.056900)
+- INFO -  [P-9] ----- add AMR root: 5/5 new triples (776, 0:00:00.010997)
 - DEBUG -  [P-9] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-9] ----- step: Preprocessing
 - DEBUG -  [P-9] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -752,38 +902,38 @@
 - DEBUG -  [P-9] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-9] -- Step 2: Transduction
 - INFO -  [P-9] --- Sequence: atomic extraction sequence
-- INFO -  [P-9] ----- extract atom classes: 30/30 new triples (806, 0:00:00.146668)
-- INFO -  [P-9] ----- extract atom individuals: 8/8 new triples (814, 0:00:00.050667)
-- INFO -  [P-9] ----- extract atomic properties: 73/73 new triples (887, 0:00:00.213882)
-- INFO -  [P-9] ----- extract atom values: 10/10 new triples (897, 0:00:00.048515)
-- DEBUG -  [P-9] ----- extract atom phenomena: 0/0 new triple (897, 0:00:00.008947)
-- INFO -  [P-9] ----- propagate atom relations: 19/52 new triples (916, 0:00:00.891550)
+- INFO -  [P-9] ----- extract atom classes: 30/30 new triples (806, 0:00:00.150075)
+- INFO -  [P-9] ----- extract atom individuals: 8/8 new triples (814, 0:00:00.043095)
+- INFO -  [P-9] ----- extract atomic properties: 73/73 new triples (887, 0:00:00.208595)
+- INFO -  [P-9] ----- extract atom values: 10/10 new triples (897, 0:00:00.051146)
+- DEBUG -  [P-9] ----- extract atom phenomena: 0/0 new triple (897, 0:00:00.008631)
+- INFO -  [P-9] ----- propagate atom relations: 19/52 new triples (916, 0:00:00.802705)
 - INFO -  [P-9] --- Sequence: classification sequence (1)
-- DEBUG -  [P-9] ----- classify modality phenomena: 0/0 new triple (916, 0:00:00.022144)
-- INFO -  [P-9] ----- reclassify argument property to class: 11/14 new triples (927, 0:00:00.072031)
+- DEBUG -  [P-9] ----- classify modality phenomena: 0/0 new triple (916, 0:00:00.023161)
+- INFO -  [P-9] ----- reclassify argument property to class: 11/14 new triples (927, 0:00:00.067188)
 - INFO -  [P-9] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-9] ----- analyze "polarity" phenomena (1): 0/0 new triple (927, 0:00:00.009069)
-- DEBUG -  [P-9] ----- analyze "polarity" phenomena (2): 0/0 new triple (927, 0:00:00.016638)
-- DEBUG -  [P-9] ----- analyze "polarity" phenomena (3): 0/0 new triple (927, 0:00:00.020485)
-- DEBUG -  [P-9] ----- analyze "polarity" phenomena (4): 0/0 new triple (927, 0:00:00.035416)
-- DEBUG -  [P-9] ----- analyze "polarity" phenomena (5): 0/0 new triple (927, 0:00:00.039392)
-- INFO -  [P-9] ----- analyze modifier phenomena (mod): 44/52 new triples (971, 0:00:00.240623)
-- DEBUG -  [P-9] ----- classify modality phenomena: 0/0 new triple (971, 0:00:00.038123)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (1): 0/0 new triple (927, 0:00:00.007885)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (2): 0/0 new triple (927, 0:00:00.019053)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (3): 0/0 new triple (927, 0:00:00.017604)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (4): 0/0 new triple (927, 0:00:00.037354)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (5): 0/0 new triple (927, 0:00:00.040180)
+- INFO -  [P-9] ----- analyze modifier phenomena (mod): 44/52 new triples (971, 0:00:00.181498)
+- DEBUG -  [P-9] ----- classify modality phenomena: 0/0 new triple (971, 0:00:00.021685)
 - INFO -  [P-9] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-9] ----- analyze "or" phenomena (1): 0/0 new triple (971, 0:00:00.013756)
-- DEBUG -  [P-9] ----- analyze "or" phenomena (2): 0/0 new triple (971, 0:00:00.019539)
-- DEBUG -  [P-9] ----- analyze "and" phenomena (1): 0/0 new triple (971, 0:00:00.011344)
-- DEBUG -  [P-9] ----- analyze "and" phenomena (2): 0/0 new triple (971, 0:00:00.010793)
+- DEBUG -  [P-9] ----- analyze "or" phenomena (1): 0/0 new triple (971, 0:00:00.013266)
+- DEBUG -  [P-9] ----- analyze "or" phenomena (2): 0/0 new triple (971, 0:00:00.011385)
+- DEBUG -  [P-9] ----- analyze "and" phenomena (1): 0/0 new triple (971, 0:00:00.010324)
+- DEBUG -  [P-9] ----- analyze "and" phenomena (2): 0/0 new triple (971, 0:00:00.010883)
 - INFO -  [P-9] --- Sequence: composite class extraction sequence
-- DEBUG -  [P-9] ----- extract composite classes (1): 0/0 new triple (971, 0:00:00.028154)
-- INFO -  [P-9] ----- extract composite classes (2): 26/29 new triples (997, 0:00:00.127735)
+- DEBUG -  [P-9] ----- extract composite classes (1): 0/0 new triple (971, 0:00:00.028402)
+- INFO -  [P-9] ----- extract composite classes (2): 26/29 new triples (997, 0:00:00.127267)
 - INFO -  [P-9] --- Sequence: classification sequence (2)
-- INFO -  [P-9] ----- classify class net as entity from core arguments: 10/107 new triples (1007, 0:00:00.189891)
-- DEBUG -  [P-9] ----- classify class net as entity from :part relation: 0/0 new triple (1007, 0:00:00.008820)
-- DEBUG -  [P-9] ----- classify class net as entity from degree arguments: 0/0 new triple (1007, 0:00:00.018074)
-- DEBUG -  [P-9] ----- Associate mother to class net from :domain relation: 0/0 new triple (1007, 0:00:00.008754)
-- INFO -  [P-9] ----- Propagate individuals to net with same base node: 1/18 new triple (1008, 0:00:00.100503)
-- DEBUG -  [P-9] ----- Propagate individuals to net with domain link: 0/0 new triple (1008, 0:00:00.011770)
+- INFO -  [P-9] ----- classify class net as entity from core arguments: 10/107 new triples (1007, 0:00:00.191057)
+- DEBUG -  [P-9] ----- classify class net as entity from :part relation: 0/0 new triple (1007, 0:00:00.009078)
+- DEBUG -  [P-9] ----- classify class net as entity from degree arguments: 0/0 new triple (1007, 0:00:00.017546)
+- DEBUG -  [P-9] ----- Associate mother to class net from :domain relation: 0/0 new triple (1007, 0:00:00.008821)
+- INFO -  [P-9] ----- Propagate individuals to net with same base node: 1/18 new triple (1008, 0:00:00.095673)
+- DEBUG -  [P-9] ----- Propagate individuals to net with domain link: 0/0 new triple (1008, 0:00:00.007948)
 - DEBUG -  [P-9] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-9] ----- step: Transduction
 - DEBUG -  [P-9] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -791,9 +941,9 @@
 - DEBUG -  [P-9] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-9] -- Step 3: Generation
 - INFO -  [P-9] --- Sequence: OWL Generation Sequence
-- INFO -  [P-9] ----- generate OWL class: 33/33 new triples (1041, 0:00:00.398262)
-- INFO -  [P-9] ----- generate OWL property: 20/20 new triples (1061, 0:00:00.164457)
-- INFO -  [P-9] ----- generate OWL individual: 9/13 new triples (1070, 0:00:00.137512)
+- INFO -  [P-9] ----- generate OWL class: 33/33 new triples (1041, 0:00:00.412575)
+- INFO -  [P-9] ----- generate OWL property: 20/20 new triples (1061, 0:00:00.165181)
+- INFO -  [P-9] ----- generate OWL individual: 9/13 new triples (1070, 0:00:00.135398)
 - DEBUG -  [P-9] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-9] ----- step: Generation
 - DEBUG -  [P-9] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -826,25 +976,25 @@
 - DEBUG -  [P-10] ----- Total rule number: 0
 - INFO -  [P-10] -- Step 1: Preprocessing
 - INFO -  [P-10] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-10] ----- fix AMR bug (1): 0/0 new triple (583, 0:00:00.018583)
+- DEBUG -  [P-10] ----- fix AMR bug (1): 0/0 new triple (583, 0:00:00.015792)
 - INFO -  [P-10] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-10] ----- reclassify AMR-LD concept (1): 5/5 new triples (588, 0:00:00.071564)
-- INFO -  [P-10] ----- reclassify AMR-LD concept (2): 4/4 new triples (592, 0:00:00.046062)
-- INFO -  [P-10] ----- reclassify AMR-LD concept (3): 4/4 new triples (596, 0:00:00.028356)
-- INFO -  [P-10] ----- reclassify AMR-LD concept (4): 16/16 new triples (612, 0:00:00.044253)
-- DEBUG -  [P-10] ----- reclassify AMR-LD concept (5): 0/0 new triple (612, 0:00:00.030606)
-- DEBUG -  [P-10] ----- reify roles as concept: 0/0 new triple (612, 0:00:00.032536)
-- INFO -  [P-10] ----- reclassify existing variable: 29/29 new triples (641, 0:00:00.015600)
-- DEBUG -  [P-10] ----- add new variable for reified concept: 0/0 new triple (641, 0:00:00.045637)
-- INFO -  [P-10] ----- add AMR leaf for reclassified concept: 21/21 new triples (662, 0:00:00.012172)
-- DEBUG -  [P-10] ----- add AMR leaf for reified concept: 0/0 new triple (662, 0:00:00.010072)
-- INFO -  [P-10] ----- add AMR edge for core relation: 18/18 new triples (680, 0:00:00.071853)
-- DEBUG -  [P-10] ----- add AMR edge for reified concept: 0/0 new triple (680, 0:00:00.020565)
-- INFO -  [P-10] ----- add AMR edge for name relation: 5/5 new triples (685, 0:00:00.016693)
-- DEBUG -  [P-10] ----- add AMR edge for quant relation: 0/0 new triple (685, 0:00:00.018327)
-- DEBUG -  [P-10] ----- add AMR edge for polarity relation: 0/0 new triple (685, 0:00:00.025017)
-- INFO -  [P-10] ----- update AMR edge role 1: 7/7 new triples (692, 0:00:00.039946)
-- INFO -  [P-10] ----- add AMR root: 5/5 new triples (697, 0:00:00.008952)
+- INFO -  [P-10] ----- reclassify AMR-LD concept (1): 5/5 new triples (588, 0:00:00.072331)
+- INFO -  [P-10] ----- reclassify AMR-LD concept (2): 4/4 new triples (592, 0:00:00.044083)
+- INFO -  [P-10] ----- reclassify AMR-LD concept (3): 4/4 new triples (596, 0:00:00.028401)
+- INFO -  [P-10] ----- reclassify AMR-LD concept (4): 16/16 new triples (612, 0:00:00.049372)
+- DEBUG -  [P-10] ----- reclassify AMR-LD concept (5): 0/0 new triple (612, 0:00:00.029907)
+- DEBUG -  [P-10] ----- reify roles as concept: 0/0 new triple (612, 0:00:00.036312)
+- INFO -  [P-10] ----- reclassify existing variable: 29/29 new triples (641, 0:00:00.017541)
+- DEBUG -  [P-10] ----- add new variable for reified concept: 0/0 new triple (641, 0:00:00.044378)
+- INFO -  [P-10] ----- add AMR leaf for reclassified concept: 21/21 new triples (662, 0:00:00.012159)
+- DEBUG -  [P-10] ----- add AMR leaf for reified concept: 0/0 new triple (662, 0:00:00.013285)
+- INFO -  [P-10] ----- add AMR edge for core relation: 18/18 new triples (680, 0:00:00.075095)
+- DEBUG -  [P-10] ----- add AMR edge for reified concept: 0/0 new triple (680, 0:00:00.023355)
+- INFO -  [P-10] ----- add AMR edge for name relation: 5/5 new triples (685, 0:00:00.019636)
+- DEBUG -  [P-10] ----- add AMR edge for quant relation: 0/0 new triple (685, 0:00:00.021315)
+- DEBUG -  [P-10] ----- add AMR edge for polarity relation: 0/0 new triple (685, 0:00:00.024731)
+- INFO -  [P-10] ----- update AMR edge role 1: 7/7 new triples (692, 0:00:00.043154)
+- INFO -  [P-10] ----- add AMR root: 5/5 new triples (697, 0:00:00.012439)
 - DEBUG -  [P-10] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-10] ----- step: Preprocessing
 - DEBUG -  [P-10] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -852,38 +1002,38 @@
 - DEBUG -  [P-10] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-10] -- Step 2: Transduction
 - INFO -  [P-10] --- Sequence: atomic extraction sequence
-- INFO -  [P-10] ----- extract atom classes: 24/24 new triples (721, 0:00:00.116402)
-- INFO -  [P-10] ----- extract atom individuals: 8/8 new triples (729, 0:00:00.045701)
-- INFO -  [P-10] ----- extract atomic properties: 25/25 new triples (754, 0:00:00.075883)
-- INFO -  [P-10] ----- extract atom values: 5/5 new triples (759, 0:00:00.027886)
-- INFO -  [P-10] ----- extract atom phenomena: 7/7 new triples (766, 0:00:00.035625)
-- INFO -  [P-10] ----- propagate atom relations: 15/38 new triples (781, 0:00:00.525225)
+- INFO -  [P-10] ----- extract atom classes: 24/24 new triples (721, 0:00:00.124714)
+- INFO -  [P-10] ----- extract atom individuals: 8/8 new triples (729, 0:00:00.041225)
+- INFO -  [P-10] ----- extract atomic properties: 25/25 new triples (754, 0:00:00.077361)
+- INFO -  [P-10] ----- extract atom values: 5/5 new triples (759, 0:00:00.034202)
+- INFO -  [P-10] ----- extract atom phenomena: 7/7 new triples (766, 0:00:00.038148)
+- INFO -  [P-10] ----- propagate atom relations: 15/38 new triples (781, 0:00:00.555228)
 - INFO -  [P-10] --- Sequence: classification sequence (1)
-- DEBUG -  [P-10] ----- classify modality phenomena: 0/0 new triple (781, 0:00:00.020764)
-- DEBUG -  [P-10] ----- reclassify argument property to class: 0/0 new triple (781, 0:00:00.023735)
+- DEBUG -  [P-10] ----- classify modality phenomena: 0/0 new triple (781, 0:00:00.027472)
+- DEBUG -  [P-10] ----- reclassify argument property to class: 0/0 new triple (781, 0:00:00.031057)
 - INFO -  [P-10] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-10] ----- analyze "polarity" phenomena (1): 0/0 new triple (781, 0:00:00.008544)
-- DEBUG -  [P-10] ----- analyze "polarity" phenomena (2): 0/0 new triple (781, 0:00:00.015863)
-- DEBUG -  [P-10] ----- analyze "polarity" phenomena (3): 0/0 new triple (781, 0:00:00.016267)
-- DEBUG -  [P-10] ----- analyze "polarity" phenomena (4): 0/0 new triple (781, 0:00:00.038608)
-- DEBUG -  [P-10] ----- analyze "polarity" phenomena (5): 0/0 new triple (781, 0:00:00.038620)
-- DEBUG -  [P-10] ----- analyze modifier phenomena (mod): 0/0 new triple (781, 0:00:00.008404)
-- DEBUG -  [P-10] ----- classify modality phenomena: 0/0 new triple (781, 0:00:00.018978)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (1): 0/0 new triple (781, 0:00:00.009510)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (2): 0/0 new triple (781, 0:00:00.025652)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (3): 0/0 new triple (781, 0:00:00.021871)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (4): 0/0 new triple (781, 0:00:00.041351)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (5): 0/0 new triple (781, 0:00:00.041284)
+- DEBUG -  [P-10] ----- analyze modifier phenomena (mod): 0/0 new triple (781, 0:00:00.009428)
+- DEBUG -  [P-10] ----- classify modality phenomena: 0/0 new triple (781, 0:00:00.020175)
 - INFO -  [P-10] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-10] ----- analyze "or" phenomena (1): 0/0 new triple (781, 0:00:00.012618)
-- DEBUG -  [P-10] ----- analyze "or" phenomena (2): 0/0 new triple (781, 0:00:00.011395)
-- DEBUG -  [P-10] ----- analyze "and" phenomena (1): 0/0 new triple (781, 0:00:00.010042)
-- DEBUG -  [P-10] ----- analyze "and" phenomena (2): 0/0 new triple (781, 0:00:00.010182)
+- DEBUG -  [P-10] ----- analyze "or" phenomena (1): 0/0 new triple (781, 0:00:00.014511)
+- DEBUG -  [P-10] ----- analyze "or" phenomena (2): 0/0 new triple (781, 0:00:00.011482)
+- DEBUG -  [P-10] ----- analyze "and" phenomena (1): 0/0 new triple (781, 0:00:00.010383)
+- DEBUG -  [P-10] ----- analyze "and" phenomena (2): 0/0 new triple (781, 0:00:00.012982)
 - INFO -  [P-10] --- Sequence: composite class extraction sequence
-- DEBUG -  [P-10] ----- extract composite classes (1): 0/0 new triple (781, 0:00:00.028440)
-- DEBUG -  [P-10] ----- extract composite classes (2): 0/0 new triple (781, 0:00:00.027431)
+- DEBUG -  [P-10] ----- extract composite classes (1): 0/0 new triple (781, 0:00:00.032900)
+- DEBUG -  [P-10] ----- extract composite classes (2): 0/0 new triple (781, 0:00:00.108309)
 - INFO -  [P-10] --- Sequence: classification sequence (2)
-- INFO -  [P-10] ----- classify class net as entity from core arguments: 6/23 new triples (787, 0:00:00.088248)
-- DEBUG -  [P-10] ----- classify class net as entity from :part relation: 0/0 new triple (787, 0:00:00.009002)
-- DEBUG -  [P-10] ----- classify class net as entity from degree arguments: 0/0 new triple (787, 0:00:00.019206)
-- DEBUG -  [P-10] ----- Associate mother to class net from :domain relation: 0/0 new triple (787, 0:00:00.008662)
-- DEBUG -  [P-10] ----- Propagate individuals to net with same base node: 0/12 new triple (787, 0:00:00.039143)
-- DEBUG -  [P-10] ----- Propagate individuals to net with domain link: 0/0 new triple (787, 0:00:00.009304)
+- INFO -  [P-10] ----- classify class net as entity from core arguments: 6/23 new triples (787, 0:00:00.098254)
+- DEBUG -  [P-10] ----- classify class net as entity from :part relation: 0/0 new triple (787, 0:00:00.009108)
+- DEBUG -  [P-10] ----- classify class net as entity from degree arguments: 0/0 new triple (787, 0:00:00.017441)
+- DEBUG -  [P-10] ----- Associate mother to class net from :domain relation: 0/0 new triple (787, 0:00:00.008463)
+- DEBUG -  [P-10] ----- Propagate individuals to net with same base node: 0/12 new triple (787, 0:00:00.049573)
+- DEBUG -  [P-10] ----- Propagate individuals to net with domain link: 0/0 new triple (787, 0:00:00.007692)
 - DEBUG -  [P-10] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-10] ----- step: Transduction
 - DEBUG -  [P-10] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -891,9 +1041,9 @@
 - DEBUG -  [P-10] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-10] -- Step 3: Generation
 - INFO -  [P-10] --- Sequence: OWL Generation Sequence
-- INFO -  [P-10] ----- generate OWL class: 12/12 new triples (799, 0:00:00.100622)
-- INFO -  [P-10] ----- generate OWL property: 8/8 new triples (807, 0:00:00.069284)
-- INFO -  [P-10] ----- generate OWL individual: 4/4 new triples (811, 0:00:00.053937)
+- INFO -  [P-10] ----- generate OWL class: 12/12 new triples (799, 0:00:00.107350)
+- INFO -  [P-10] ----- generate OWL property: 8/8 new triples (807, 0:00:00.072956)
+- INFO -  [P-10] ----- generate OWL individual: 4/4 new triples (811, 0:00:00.046472)
 - DEBUG -  [P-10] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-10] ----- step: Generation
 - DEBUG -  [P-10] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -926,25 +1076,25 @@
 - DEBUG -  [P-11] ----- Total rule number: 0
 - INFO -  [P-11] -- Step 1: Preprocessing
 - INFO -  [P-11] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-11] ----- fix AMR bug (1): 0/0 new triple (620, 0:00:00.017928)
+- DEBUG -  [P-11] ----- fix AMR bug (1): 0/0 new triple (620, 0:00:00.016165)
 - INFO -  [P-11] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-11] ----- reclassify AMR-LD concept (1): 5/5 new triples (625, 0:00:00.093578)
-- INFO -  [P-11] ----- reclassify AMR-LD concept (2): 8/8 new triples (633, 0:00:00.046256)
-- INFO -  [P-11] ----- reclassify AMR-LD concept (3): 20/20 new triples (653, 0:00:00.031305)
-- INFO -  [P-11] ----- reclassify AMR-LD concept (4): 24/24 new triples (677, 0:00:00.047575)
-- INFO -  [P-11] ----- reclassify AMR-LD concept (5): 4/4 new triples (681, 0:00:00.029457)
-- DEBUG -  [P-11] ----- reify roles as concept: 0/0 new triple (681, 0:00:00.035866)
-- INFO -  [P-11] ----- reclassify existing variable: 74/74 new triples (755, 0:00:00.018673)
-- DEBUG -  [P-11] ----- add new variable for reified concept: 0/0 new triple (755, 0:00:00.050074)
-- INFO -  [P-11] ----- add AMR leaf for reclassified concept: 54/54 new triples (809, 0:00:00.024892)
-- DEBUG -  [P-11] ----- add AMR leaf for reified concept: 0/0 new triple (809, 0:00:00.011804)
-- INFO -  [P-11] ----- add AMR edge for core relation: 51/51 new triples (860, 0:00:00.102026)
-- DEBUG -  [P-11] ----- add AMR edge for reified concept: 0/0 new triple (860, 0:00:00.019642)
-- INFO -  [P-11] ----- add AMR edge for name relation: 10/10 new triples (870, 0:00:00.020293)
-- DEBUG -  [P-11] ----- add AMR edge for quant relation: 0/0 new triple (870, 0:00:00.022712)
-- DEBUG -  [P-11] ----- add AMR edge for polarity relation: 0/0 new triple (870, 0:00:00.029566)
-- INFO -  [P-11] ----- update AMR edge role 1: 19/19 new triples (889, 0:00:00.078968)
-- INFO -  [P-11] ----- add AMR root: 5/5 new triples (894, 0:00:00.009359)
+- INFO -  [P-11] ----- reclassify AMR-LD concept (1): 5/5 new triples (625, 0:00:00.094664)
+- INFO -  [P-11] ----- reclassify AMR-LD concept (2): 8/8 new triples (633, 0:00:00.046055)
+- INFO -  [P-11] ----- reclassify AMR-LD concept (3): 20/20 new triples (653, 0:00:00.032194)
+- INFO -  [P-11] ----- reclassify AMR-LD concept (4): 24/24 new triples (677, 0:00:00.048069)
+- INFO -  [P-11] ----- reclassify AMR-LD concept (5): 4/4 new triples (681, 0:00:00.029233)
+- DEBUG -  [P-11] ----- reify roles as concept: 0/0 new triple (681, 0:00:00.038424)
+- INFO -  [P-11] ----- reclassify existing variable: 74/74 new triples (755, 0:00:00.018025)
+- DEBUG -  [P-11] ----- add new variable for reified concept: 0/0 new triple (755, 0:00:00.043581)
+- INFO -  [P-11] ----- add AMR leaf for reclassified concept: 54/54 new triples (809, 0:00:00.032107)
+- DEBUG -  [P-11] ----- add AMR leaf for reified concept: 0/0 new triple (809, 0:00:00.011233)
+- INFO -  [P-11] ----- add AMR edge for core relation: 51/51 new triples (860, 0:00:00.106712)
+- DEBUG -  [P-11] ----- add AMR edge for reified concept: 0/0 new triple (860, 0:00:00.021565)
+- INFO -  [P-11] ----- add AMR edge for name relation: 10/10 new triples (870, 0:00:00.020401)
+- DEBUG -  [P-11] ----- add AMR edge for quant relation: 0/0 new triple (870, 0:00:00.023968)
+- DEBUG -  [P-11] ----- add AMR edge for polarity relation: 0/0 new triple (870, 0:00:00.029102)
+- INFO -  [P-11] ----- update AMR edge role 1: 19/19 new triples (889, 0:00:00.082705)
+- INFO -  [P-11] ----- add AMR root: 5/5 new triples (894, 0:00:00.010642)
 - DEBUG -  [P-11] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-11] ----- step: Preprocessing
 - DEBUG -  [P-11] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -952,38 +1102,38 @@
 - DEBUG -  [P-11] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-11] -- Step 2: Transduction
 - INFO -  [P-11] --- Sequence: atomic extraction sequence
-- INFO -  [P-11] ----- extract atom classes: 54/54 new triples (948, 0:00:00.374560)
-- INFO -  [P-11] ----- extract atom individuals: 16/16 new triples (964, 0:00:00.116111)
-- INFO -  [P-11] ----- extract atomic properties: 101/101 new triples (1065, 0:00:00.439925)
-- INFO -  [P-11] ----- extract atom values: 10/10 new triples (1075, 0:00:00.062374)
-- INFO -  [P-11] ----- extract atom phenomena: 7/7 new triples (1082, 0:00:00.042190)
-- INFO -  [P-11] ----- propagate atom relations: 30/96 new triples (1112, 0:00:01.641122)
+- INFO -  [P-11] ----- extract atom classes: 54/54 new triples (948, 0:00:00.267906)
+- INFO -  [P-11] ----- extract atom individuals: 16/16 new triples (964, 0:00:00.078693)
+- INFO -  [P-11] ----- extract atomic properties: 101/101 new triples (1065, 0:00:00.285765)
+- INFO -  [P-11] ----- extract atom values: 10/10 new triples (1075, 0:00:00.051591)
+- INFO -  [P-11] ----- extract atom phenomena: 7/7 new triples (1082, 0:00:00.038870)
+- INFO -  [P-11] ----- propagate atom relations: 30/96 new triples (1112, 0:00:01.563411)
 - INFO -  [P-11] --- Sequence: classification sequence (1)
-- DEBUG -  [P-11] ----- classify modality phenomena: 0/0 new triple (1112, 0:00:00.020167)
-- INFO -  [P-11] ----- reclassify argument property to class: 22/28 new triples (1134, 0:00:00.108894)
+- DEBUG -  [P-11] ----- classify modality phenomena: 0/0 new triple (1112, 0:00:00.021141)
+- INFO -  [P-11] ----- reclassify argument property to class: 22/28 new triples (1134, 0:00:00.110975)
 - INFO -  [P-11] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-11] ----- analyze "polarity" phenomena (1): 0/0 new triple (1134, 0:00:00.008967)
-- DEBUG -  [P-11] ----- analyze "polarity" phenomena (2): 0/0 new triple (1134, 0:00:00.021096)
-- DEBUG -  [P-11] ----- analyze "polarity" phenomena (3): 0/0 new triple (1134, 0:00:00.021020)
-- DEBUG -  [P-11] ----- analyze "polarity" phenomena (4): 0/0 new triple (1134, 0:00:00.037998)
-- DEBUG -  [P-11] ----- analyze "polarity" phenomena (5): 0/0 new triple (1134, 0:00:00.040846)
-- INFO -  [P-11] ----- analyze modifier phenomena (mod): 43/50 new triples (1177, 0:00:00.212841)
-- DEBUG -  [P-11] ----- classify modality phenomena: 0/0 new triple (1177, 0:00:00.024692)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (1): 0/0 new triple (1134, 0:00:00.007591)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (2): 0/0 new triple (1134, 0:00:00.017014)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (3): 0/0 new triple (1134, 0:00:00.017308)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (4): 0/0 new triple (1134, 0:00:00.036110)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (5): 0/0 new triple (1134, 0:00:00.040659)
+- INFO -  [P-11] ----- analyze modifier phenomena (mod): 43/50 new triples (1177, 0:00:00.180232)
+- DEBUG -  [P-11] ----- classify modality phenomena: 0/0 new triple (1177, 0:00:00.021177)
 - INFO -  [P-11] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-11] ----- analyze "or" phenomena (1): 0/0 new triple (1177, 0:00:00.014423)
-- DEBUG -  [P-11] ----- analyze "or" phenomena (2): 0/0 new triple (1177, 0:00:00.014472)
-- INFO -  [P-11] ----- analyze "and" phenomena (1): 2/18 new triples (1179, 0:00:00.173557)
-- DEBUG -  [P-11] ----- analyze "and" phenomena (2): 0/0 new triple (1179, 0:00:00.012980)
+- DEBUG -  [P-11] ----- analyze "or" phenomena (1): 0/0 new triple (1177, 0:00:00.011801)
+- DEBUG -  [P-11] ----- analyze "or" phenomena (2): 0/0 new triple (1177, 0:00:00.011187)
+- INFO -  [P-11] ----- analyze "and" phenomena (1): 2/18 new triples (1179, 0:00:00.148233)
+- DEBUG -  [P-11] ----- analyze "and" phenomena (2): 0/0 new triple (1179, 0:00:00.010953)
 - INFO -  [P-11] --- Sequence: composite class extraction sequence
-- INFO -  [P-11] ----- extract composite classes (1): 25/27 new triples (1204, 0:00:00.134451)
-- INFO -  [P-11] ----- extract composite classes (2): 27/30 new triples (1231, 0:00:00.134097)
+- INFO -  [P-11] ----- extract composite classes (1): 25/27 new triples (1204, 0:00:00.134539)
+- INFO -  [P-11] ----- extract composite classes (2): 27/30 new triples (1231, 0:00:00.131101)
 - INFO -  [P-11] --- Sequence: classification sequence (2)
-- INFO -  [P-11] ----- classify class net as entity from core arguments: 22/132 new triples (1253, 0:00:00.279270)
-- DEBUG -  [P-11] ----- classify class net as entity from :part relation: 0/0 new triple (1253, 0:00:00.010292)
-- DEBUG -  [P-11] ----- classify class net as entity from degree arguments: 0/0 new triple (1253, 0:00:00.016273)
-- DEBUG -  [P-11] ----- Associate mother to class net from :domain relation: 0/0 new triple (1253, 0:00:00.009670)
-- DEBUG -  [P-11] ----- Propagate individuals to net with same base node: 0/28 new triple (1253, 0:00:00.109291)
-- DEBUG -  [P-11] ----- Propagate individuals to net with domain link: 0/0 new triple (1253, 0:00:00.008781)
+- INFO -  [P-11] ----- classify class net as entity from core arguments: 22/132 new triples (1253, 0:00:00.293854)
+- DEBUG -  [P-11] ----- classify class net as entity from :part relation: 0/0 new triple (1253, 0:00:00.010598)
+- DEBUG -  [P-11] ----- classify class net as entity from degree arguments: 0/0 new triple (1253, 0:00:00.018586)
+- DEBUG -  [P-11] ----- Associate mother to class net from :domain relation: 0/0 new triple (1253, 0:00:00.011958)
+- DEBUG -  [P-11] ----- Propagate individuals to net with same base node: 0/28 new triple (1253, 0:00:00.113886)
+- DEBUG -  [P-11] ----- Propagate individuals to net with domain link: 0/0 new triple (1253, 0:00:00.009796)
 - DEBUG -  [P-11] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-11] ----- step: Transduction
 - DEBUG -  [P-11] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -991,9 +1141,9 @@
 - DEBUG -  [P-11] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-11] -- Step 3: Generation
 - INFO -  [P-11] --- Sequence: OWL Generation Sequence
-- INFO -  [P-11] ----- generate OWL class: 56/56 new triples (1309, 0:00:00.570490)
-- INFO -  [P-11] ----- generate OWL property: 20/24 new triples (1329, 0:00:00.214460)
-- INFO -  [P-11] ----- generate OWL individual: 12/16 new triples (1341, 0:00:00.227436)
+- INFO -  [P-11] ----- generate OWL class: 56/56 new triples (1309, 0:00:00.536958)
+- INFO -  [P-11] ----- generate OWL property: 20/24 new triples (1329, 0:00:00.203899)
+- INFO -  [P-11] ----- generate OWL individual: 12/16 new triples (1341, 0:00:00.167511)
 - DEBUG -  [P-11] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-11] ----- step: Generation
 - DEBUG -  [P-11] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1026,33 +1176,83 @@
 - DEBUG -  [P-12] ----- Total rule number: 0
 - INFO -  [P-12] -- Step 1: Preprocessing
 - INFO -  [P-12] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-12] ----- fix AMR bug (1): 0/0 new triple (632, 0:00:00.015693)
+- DEBUG -  [P-12] ----- fix AMR bug (1): 0/0 new triple (632, 0:00:00.018834)
 - INFO -  [P-12] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-12] ----- reclassify AMR-LD concept (1): 5/5 new triples (637, 0:00:00.100737)
-- INFO -  [P-12] ----- reclassify AMR-LD concept (2): 4/4 new triples (641, 0:00:00.048216)
-- INFO -  [P-12] ----- reclassify AMR-LD concept (3): 28/28 new triples (669, 0:00:00.032024)
-- INFO -  [P-12] ----- reclassify AMR-LD concept (4): 28/28 new triples (697, 0:00:00.121490)
-- INFO -  [P-12] ----- reclassify AMR-LD concept (5): 4/4 new triples (701, 0:00:00.031946)
-- DEBUG -  [P-12] ----- reify roles as concept: 0/0 new triple (701, 0:00:00.043365)
-- INFO -  [P-12] ----- reclassify existing variable: 82/82 new triples (783, 0:00:00.021269)
-- DEBUG -  [P-12] ----- add new variable for reified concept: 0/0 new triple (783, 0:00:00.046280)
-- INFO -  [P-12] ----- add AMR leaf for reclassified concept: 60/60 new triples (843, 0:00:00.027442)
-- DEBUG -  [P-12] ----- add AMR leaf for reified concept: 0/0 new triple (843, 0:00:00.011502)
-- INFO -  [P-12] ----- add AMR edge for core relation: 63/63 new triples (906, 0:00:00.114994)
-- DEBUG -  [P-12] ----- add AMR edge for reified concept: 0/0 new triple (906, 0:00:00.024973)
-- INFO -  [P-12] ----- add AMR edge for name relation: 10/10 new triples (916, 0:00:00.020100)
-- ERROR -  [P-12] *** *** **** Assertion Error *** *** *** 
- Object None must be an rdflib term
-- ERROR -  [P-12] *** Error while processing extraction (apply_step) ***
-- DEBUG -  [P-12] ----- step_name = Preprocessing
-- DEBUG -  [P-12] ----- len(step_sequence_def) = 2
-- DEBUG -  [P-12] ----- last sequence def = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]
-- ERROR -  [P-12]  *** Error while processing extraction (apply) ***
-- DEBUG -  [P-12] ----- config.extraction_scheme = owl_amr_scheme_1
-- DEBUG -  [P-12] ----- rule_dir = amr_master_rule/
-- DEBUG -  [P-12] ----- scheme = {'Preprocessing': [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]], 'Transduction': [['atomic extraction sequence', <function extract_atom_class at 0x7f64b5fea980>, <function extract_atom_individual at 0x7f64b5feafc0>, <function extract_atom_property at 0x7f64b5feb7e0>, <function extract_atom_value at 0x7f64b5febe20>, <function extract_atom_phenomena at 0x7f64b5fe0400>, <function propagate_atom_relation at 0x7f64b5fe0860>], ['classification sequence (1)', <function classify_modality_phenomena at 0x7f64b5fe13a0>, <function reclassify_argument_property_to_class at 0x7f64b5fe16c0>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f64b5fe2a20>, <function analyze_phenomena_polarity_2 at 0x7f64b5fe2d40>, <function analyze_phenomena_polarity_3 at 0x7f64b5fe3060>, <function analyze_phenomena_polarity_4 at 0x7f64b5fe3380>, <function analyze_phenomena_polarity_5 at 0x7f64b5fe36a0>, <function analyze_phenomena_mod_1 at 0x7f64b5fe3d80>, <function classify_modality_phenomena at 0x7f64b5fe13a0>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f64b5f48540>, <function analyze_phenomena_or_2 at 0x7f64b5f48cc0>, <function analyze_phenomena_and_1 at 0x7f64b5f49260>, <function analyze_phenomena_and_2 at 0x7f64b5f49760>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f64b5fe0cc0>, <function extract_composite_class_2 at 0x7f64b5fe1120>], ['classification sequence (2)', <function classify_entity_from_core_arguments at 0x7f64b5fe1940>, <function classify_entity_from_part_relation at 0x7f64b5fe1c60>, <function classify_entity_from_degree_arguments at 0x7f64b5fe1ee0>, <function classify_mother_from_domain_relation at 0x7f64b5fe2160>, <function propagate_individual_1 at 0x7f64b5fe23e0>, <function propagate_individual_2 at 0x7f64b5fe2480>]], 'Generation': [['OWL Generation Sequence', <function generate_owl_class at 0x7f64b5f4b060>, <function generate_owl_property at 0x7f64b5f4a160>, <function generate_owl_individual at 0x7f64b5f4b880>]]}
-- DEBUG -  [P-12] ----- step = Preprocessing, [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]]
-- INFO -  [P-12] Failure
+- INFO -  [P-12] ----- reclassify AMR-LD concept (1): 5/5 new triples (637, 0:00:00.109385)
+- INFO -  [P-12] ----- reclassify AMR-LD concept (2): 4/4 new triples (641, 0:00:00.046661)
+- INFO -  [P-12] ----- reclassify AMR-LD concept (3): 28/28 new triples (669, 0:00:00.033833)
+- INFO -  [P-12] ----- reclassify AMR-LD concept (4): 28/28 new triples (697, 0:00:00.051299)
+- INFO -  [P-12] ----- reclassify AMR-LD concept (5): 4/4 new triples (701, 0:00:00.031269)
+- DEBUG -  [P-12] ----- reify roles as concept: 0/0 new triple (701, 0:00:00.040382)
+- INFO -  [P-12] ----- reclassify existing variable: 82/82 new triples (783, 0:00:00.018559)
+- DEBUG -  [P-12] ----- add new variable for reified concept: 0/0 new triple (783, 0:00:00.047638)
+- INFO -  [P-12] ----- add AMR leaf for reclassified concept: 60/60 new triples (843, 0:00:00.029948)
+- DEBUG -  [P-12] ----- add AMR leaf for reified concept: 0/0 new triple (843, 0:00:00.011624)
+- INFO -  [P-12] ----- add AMR edge for core relation: 63/63 new triples (906, 0:00:00.116119)
+- DEBUG -  [P-12] ----- add AMR edge for reified concept: 0/0 new triple (906, 0:00:00.020429)
+- INFO -  [P-12] ----- add AMR edge for name relation: 10/10 new triples (916, 0:00:00.021059)
+- DEBUG -  [P-12] ----- add AMR edge for quant relation: 0/0 new triple (916, 0:00:00.023869)
+- DEBUG -  [P-12] ----- add AMR edge for polarity relation: 0/0 new triple (916, 0:00:00.028535)
+- INFO -  [P-12] ----- update AMR edge role 1: 21/21 new triples (937, 0:00:00.098270)
+- INFO -  [P-12] ----- add AMR root: 5/5 new triples (942, 0:00:00.011429)
+- DEBUG -  [P-12] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-12] ----- step: Preprocessing
+- DEBUG -  [P-12] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-12] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-12] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-12] -- Step 2: Transduction
+- INFO -  [P-12] --- Sequence: atomic extraction sequence
+- INFO -  [P-12] ----- extract atom classes: 60/60 new triples (1002, 0:00:00.296492)
+- INFO -  [P-12] ----- extract atom individuals: 16/16 new triples (1018, 0:00:00.080572)
+- INFO -  [P-12] ----- extract atomic properties: 98/98 new triples (1116, 0:00:00.293769)
+- INFO -  [P-12] ----- extract atom values: 10/10 new triples (1126, 0:00:00.050662)
+- INFO -  [P-12] ----- extract atom phenomena: 14/14 new triples (1140, 0:00:00.068485)
+- INFO -  [P-12] ----- propagate atom relations: 34/112 new triples (1174, 0:00:01.772619)
+- INFO -  [P-12] --- Sequence: classification sequence (1)
+- DEBUG -  [P-12] ----- classify modality phenomena: 0/0 new triple (1174, 0:00:00.028077)
+- INFO -  [P-12] ----- reclassify argument property to class: 10/12 new triples (1184, 0:00:00.083055)
+- INFO -  [P-12] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (1): 0/0 new triple (1184, 0:00:00.007951)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (2): 0/0 new triple (1184, 0:00:00.017897)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (3): 0/0 new triple (1184, 0:00:00.018353)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (4): 0/0 new triple (1184, 0:00:00.037820)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (5): 0/0 new triple (1184, 0:00:00.039214)
+- INFO -  [P-12] ----- analyze modifier phenomena (mod): 44/52 new triples (1228, 0:00:00.176549)
+- DEBUG -  [P-12] ----- classify modality phenomena: 0/0 new triple (1228, 0:00:00.022911)
+- INFO -  [P-12] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-12] ----- analyze "or" phenomena (1): 0/0 new triple (1228, 0:00:00.013435)
+- DEBUG -  [P-12] ----- analyze "or" phenomena (2): 0/0 new triple (1228, 0:00:00.011809)
+- INFO -  [P-12] ----- analyze "and" phenomena (1): 2/14 new triples (1230, 0:00:00.151868)
+- INFO -  [P-12] ----- analyze "and" phenomena (2): 2/22 new triples (1232, 0:00:00.153471)
+- INFO -  [P-12] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-12] ----- extract composite classes (1): 0/0 new triple (1232, 0:00:00.033833)
+- INFO -  [P-12] ----- extract composite classes (2): 50/54 new triples (1282, 0:00:00.290037)
+- INFO -  [P-12] --- Sequence: classification sequence (2)
+- INFO -  [P-12] ----- classify class net as entity from core arguments: 20/148 new triples (1302, 0:00:00.272243)
+- DEBUG -  [P-12] ----- classify class net as entity from :part relation: 0/0 new triple (1302, 0:00:00.009147)
+- DEBUG -  [P-12] ----- classify class net as entity from degree arguments: 0/0 new triple (1302, 0:00:00.017736)
+- DEBUG -  [P-12] ----- Associate mother to class net from :domain relation: 0/0 new triple (1302, 0:00:00.010291)
+- DEBUG -  [P-12] ----- Propagate individuals to net with same base node: 0/28 new triple (1302, 0:00:00.115220)
+- DEBUG -  [P-12] ----- Propagate individuals to net with domain link: 0/0 new triple (1302, 0:00:00.009506)
+- DEBUG -  [P-12] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-12] ----- step: Transduction
+- DEBUG -  [P-12] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-12] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-12] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-12] -- Step 3: Generation
+- INFO -  [P-12] --- Sequence: OWL Generation Sequence
+- INFO -  [P-12] ----- generate OWL class: 49/56 new triples (1351, 0:00:00.538092)
+- INFO -  [P-12] ----- generate OWL property: 28/28 new triples (1379, 0:00:00.226280)
+- INFO -  [P-12] ----- generate OWL individual: 12/16 new triples (1391, 0:00:00.167372)
+- DEBUG -  [P-12] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-12] ----- step: Generation
+- DEBUG -  [P-12] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-12] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-12] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- DEBUG -  [P-12] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-12] ----- Number of factoids: 100
+- DEBUG -  [P-12] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-12] Success (100 extracted triple(s))
 - INFO - 
  [P-13]     *** extraction from sentence 13 *** 
 - INFO -  [P-13] -- Work Structure Preparation
@@ -1076,33 +1276,83 @@
 - DEBUG -  [P-13] ----- Total rule number: 0
 - INFO -  [P-13] -- Step 1: Preprocessing
 - INFO -  [P-13] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-13] ----- fix AMR bug (1): 0/0 new triple (620, 0:00:00.015333)
+- DEBUG -  [P-13] ----- fix AMR bug (1): 0/0 new triple (620, 0:00:00.015423)
 - INFO -  [P-13] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-13] ----- reclassify AMR-LD concept (1): 5/5 new triples (625, 0:00:00.096491)
-- DEBUG -  [P-13] ----- reclassify AMR-LD concept (2): 0/0 new triple (625, 0:00:00.052029)
-- INFO -  [P-13] ----- reclassify AMR-LD concept (3): 16/16 new triples (641, 0:00:00.029192)
-- INFO -  [P-13] ----- reclassify AMR-LD concept (4): 40/40 new triples (681, 0:00:00.049930)
-- INFO -  [P-13] ----- reclassify AMR-LD concept (5): 4/4 new triples (685, 0:00:00.029144)
-- DEBUG -  [P-13] ----- reify roles as concept: 0/0 new triple (685, 0:00:00.038169)
-- INFO -  [P-13] ----- reclassify existing variable: 64/64 new triples (749, 0:00:00.021776)
-- DEBUG -  [P-13] ----- add new variable for reified concept: 0/0 new triple (749, 0:00:00.047551)
-- INFO -  [P-13] ----- add AMR leaf for reclassified concept: 48/48 new triples (797, 0:00:00.025551)
-- DEBUG -  [P-13] ----- add AMR leaf for reified concept: 0/0 new triple (797, 0:00:00.010900)
-- INFO -  [P-13] ----- add AMR edge for core relation: 51/51 new triples (848, 0:00:00.132548)
-- DEBUG -  [P-13] ----- add AMR edge for reified concept: 0/0 new triple (848, 0:00:00.025329)
-- DEBUG -  [P-13] ----- add AMR edge for name relation: 0/0 new triple (848, 0:00:00.020681)
-- ERROR -  [P-13] *** *** **** Assertion Error *** *** *** 
- Object None must be an rdflib term
-- ERROR -  [P-13] *** Error while processing extraction (apply_step) ***
-- DEBUG -  [P-13] ----- step_name = Preprocessing
-- DEBUG -  [P-13] ----- len(step_sequence_def) = 2
-- DEBUG -  [P-13] ----- last sequence def = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]
-- ERROR -  [P-13]  *** Error while processing extraction (apply) ***
-- DEBUG -  [P-13] ----- config.extraction_scheme = owl_amr_scheme_1
-- DEBUG -  [P-13] ----- rule_dir = amr_master_rule/
-- DEBUG -  [P-13] ----- scheme = {'Preprocessing': [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]], 'Transduction': [['atomic extraction sequence', <function extract_atom_class at 0x7f64b5fea980>, <function extract_atom_individual at 0x7f64b5feafc0>, <function extract_atom_property at 0x7f64b5feb7e0>, <function extract_atom_value at 0x7f64b5febe20>, <function extract_atom_phenomena at 0x7f64b5fe0400>, <function propagate_atom_relation at 0x7f64b5fe0860>], ['classification sequence (1)', <function classify_modality_phenomena at 0x7f64b5fe13a0>, <function reclassify_argument_property_to_class at 0x7f64b5fe16c0>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f64b5fe2a20>, <function analyze_phenomena_polarity_2 at 0x7f64b5fe2d40>, <function analyze_phenomena_polarity_3 at 0x7f64b5fe3060>, <function analyze_phenomena_polarity_4 at 0x7f64b5fe3380>, <function analyze_phenomena_polarity_5 at 0x7f64b5fe36a0>, <function analyze_phenomena_mod_1 at 0x7f64b5fe3d80>, <function classify_modality_phenomena at 0x7f64b5fe13a0>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f64b5f48540>, <function analyze_phenomena_or_2 at 0x7f64b5f48cc0>, <function analyze_phenomena_and_1 at 0x7f64b5f49260>, <function analyze_phenomena_and_2 at 0x7f64b5f49760>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f64b5fe0cc0>, <function extract_composite_class_2 at 0x7f64b5fe1120>], ['classification sequence (2)', <function classify_entity_from_core_arguments at 0x7f64b5fe1940>, <function classify_entity_from_part_relation at 0x7f64b5fe1c60>, <function classify_entity_from_degree_arguments at 0x7f64b5fe1ee0>, <function classify_mother_from_domain_relation at 0x7f64b5fe2160>, <function propagate_individual_1 at 0x7f64b5fe23e0>, <function propagate_individual_2 at 0x7f64b5fe2480>]], 'Generation': [['OWL Generation Sequence', <function generate_owl_class at 0x7f64b5f4b060>, <function generate_owl_property at 0x7f64b5f4a160>, <function generate_owl_individual at 0x7f64b5f4b880>]]}
-- DEBUG -  [P-13] ----- step = Preprocessing, [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]]
-- INFO -  [P-13] Failure
+- INFO -  [P-13] ----- reclassify AMR-LD concept (1): 5/5 new triples (625, 0:00:00.097247)
+- DEBUG -  [P-13] ----- reclassify AMR-LD concept (2): 0/0 new triple (625, 0:00:00.045788)
+- INFO -  [P-13] ----- reclassify AMR-LD concept (3): 16/16 new triples (641, 0:00:00.031607)
+- INFO -  [P-13] ----- reclassify AMR-LD concept (4): 40/40 new triples (681, 0:00:00.127696)
+- INFO -  [P-13] ----- reclassify AMR-LD concept (5): 4/4 new triples (685, 0:00:00.033547)
+- DEBUG -  [P-13] ----- reify roles as concept: 0/0 new triple (685, 0:00:00.044057)
+- INFO -  [P-13] ----- reclassify existing variable: 64/64 new triples (749, 0:00:00.018673)
+- DEBUG -  [P-13] ----- add new variable for reified concept: 0/0 new triple (749, 0:00:00.047071)
+- INFO -  [P-13] ----- add AMR leaf for reclassified concept: 48/48 new triples (797, 0:00:00.026762)
+- DEBUG -  [P-13] ----- add AMR leaf for reified concept: 0/0 new triple (797, 0:00:00.010284)
+- INFO -  [P-13] ----- add AMR edge for core relation: 51/51 new triples (848, 0:00:00.102975)
+- DEBUG -  [P-13] ----- add AMR edge for reified concept: 0/0 new triple (848, 0:00:00.020629)
+- DEBUG -  [P-13] ----- add AMR edge for name relation: 0/0 new triple (848, 0:00:00.020706)
+- DEBUG -  [P-13] ----- add AMR edge for quant relation: 0/0 new triple (848, 0:00:00.024367)
+- DEBUG -  [P-13] ----- add AMR edge for polarity relation: 0/0 new triple (848, 0:00:00.028117)
+- INFO -  [P-13] ----- update AMR edge role 1: 13/13 new triples (861, 0:00:00.076430)
+- INFO -  [P-13] ----- add AMR root: 5/5 new triples (866, 0:00:00.010867)
+- DEBUG -  [P-13] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-13] ----- step: Preprocessing
+- DEBUG -  [P-13] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-13] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-13] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-13] -- Step 2: Transduction
+- INFO -  [P-13] --- Sequence: atomic extraction sequence
+- INFO -  [P-13] ----- extract atom classes: 66/66 new triples (932, 0:00:00.317199)
+- DEBUG -  [P-13] ----- extract atom individuals: 0/0 new triple (932, 0:00:00.016526)
+- INFO -  [P-13] ----- extract atomic properties: 49/49 new triples (981, 0:00:00.141770)
+- DEBUG -  [P-13] ----- extract atom values: 0/0 new triple (981, 0:00:00.005704)
+- INFO -  [P-13] ----- extract atom phenomena: 7/7 new triples (988, 0:00:00.037817)
+- INFO -  [P-13] ----- propagate atom relations: 20/52 new triples (1008, 0:00:01.015731)
+- INFO -  [P-13] --- Sequence: classification sequence (1)
+- DEBUG -  [P-13] ----- classify modality phenomena: 0/0 new triple (1008, 0:00:00.020052)
+- INFO -  [P-13] ----- reclassify argument property to class: 10/12 new triples (1018, 0:00:00.068787)
+- INFO -  [P-13] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (1): 0/0 new triple (1018, 0:00:00.008129)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (2): 0/0 new triple (1018, 0:00:00.021039)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (3): 0/0 new triple (1018, 0:00:00.016387)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (4): 0/0 new triple (1018, 0:00:00.035254)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (5): 0/0 new triple (1018, 0:00:00.036092)
+- INFO -  [P-13] ----- analyze modifier phenomena (mod): 20/22 new triples (1038, 0:00:00.091405)
+- DEBUG -  [P-13] ----- classify modality phenomena: 0/0 new triple (1038, 0:00:00.023231)
+- INFO -  [P-13] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-13] ----- analyze "or" phenomena (1): 0/0 new triple (1038, 0:00:00.012162)
+- DEBUG -  [P-13] ----- analyze "or" phenomena (2): 0/0 new triple (1038, 0:00:00.011672)
+- DEBUG -  [P-13] ----- analyze "and" phenomena (1): 0/0 new triple (1038, 0:00:00.010244)
+- DEBUG -  [P-13] ----- analyze "and" phenomena (2): 0/0 new triple (1038, 0:00:00.010472)
+- INFO -  [P-13] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-13] ----- extract composite classes (1): 0/0 new triple (1038, 0:00:00.028869)
+- DEBUG -  [P-13] ----- extract composite classes (2): 0/0 new triple (1038, 0:00:00.031741)
+- INFO -  [P-13] --- Sequence: classification sequence (2)
+- INFO -  [P-13] ----- classify class net as entity from core arguments: 10/48 new triples (1048, 0:00:00.143218)
+- DEBUG -  [P-13] ----- classify class net as entity from :part relation: 0/0 new triple (1048, 0:00:00.009508)
+- DEBUG -  [P-13] ----- classify class net as entity from degree arguments: 0/0 new triple (1048, 0:00:00.019242)
+- DEBUG -  [P-13] ----- Associate mother to class net from :domain relation: 0/0 new triple (1048, 0:00:00.009430)
+- DEBUG -  [P-13] ----- Propagate individuals to net with same base node: 0/2 new triple (1048, 0:00:00.026383)
+- DEBUG -  [P-13] ----- Propagate individuals to net with domain link: 0/0 new triple (1048, 0:00:00.007600)
+- DEBUG -  [P-13] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-13] ----- step: Transduction
+- DEBUG -  [P-13] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-13] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-13] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-13] -- Step 3: Generation
+- INFO -  [P-13] --- Sequence: OWL Generation Sequence
+- INFO -  [P-13] ----- generate OWL class: 51/51 new triples (1099, 0:00:00.499218)
+- INFO -  [P-13] ----- generate OWL property: 12/12 new triples (1111, 0:00:00.107748)
+- INFO -  [P-13] ----- generate OWL individual: 2/4 new triples (1113, 0:00:00.053392)
+- DEBUG -  [P-13] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-13] ----- step: Generation
+- DEBUG -  [P-13] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-13] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-13] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- DEBUG -  [P-13] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-13] ----- Number of factoids: 67
+- DEBUG -  [P-13] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-13] Success (67 extracted triple(s))
 - INFO - 
  [P-14]     *** extraction from sentence 14 *** 
 - INFO -  [P-14] -- Work Structure Preparation
@@ -1126,25 +1376,25 @@
 - DEBUG -  [P-14] ----- Total rule number: 0
 - INFO -  [P-14] -- Step 1: Preprocessing
 - INFO -  [P-14] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-14] ----- fix AMR bug (1): 0/0 new triple (573, 0:00:00.015840)
+- DEBUG -  [P-14] ----- fix AMR bug (1): 0/0 new triple (573, 0:00:00.015275)
 - INFO -  [P-14] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- DEBUG -  [P-14] ----- reclassify AMR-LD concept (1): 0/0 new triple (573, 0:00:00.069464)
-- DEBUG -  [P-14] ----- reclassify AMR-LD concept (2): 0/0 new triple (573, 0:00:00.107686)
-- INFO -  [P-14] ----- reclassify AMR-LD concept (3): 4/4 new triples (577, 0:00:00.033515)
-- INFO -  [P-14] ----- reclassify AMR-LD concept (4): 12/12 new triples (589, 0:00:00.057431)
-- INFO -  [P-14] ----- reclassify AMR-LD concept (5): 4/4 new triples (593, 0:00:00.034398)
-- DEBUG -  [P-14] ----- reify roles as concept: 0/0 new triple (593, 0:00:00.040787)
-- INFO -  [P-14] ----- reclassify existing variable: 20/20 new triples (613, 0:00:00.019280)
-- DEBUG -  [P-14] ----- add new variable for reified concept: 0/0 new triple (613, 0:00:00.046013)
-- INFO -  [P-14] ----- add AMR leaf for reclassified concept: 15/15 new triples (628, 0:00:00.014653)
-- DEBUG -  [P-14] ----- add AMR leaf for reified concept: 0/0 new triple (628, 0:00:00.014760)
-- INFO -  [P-14] ----- add AMR edge for core relation: 12/12 new triples (640, 0:00:00.066915)
-- DEBUG -  [P-14] ----- add AMR edge for reified concept: 0/0 new triple (640, 0:00:00.021097)
-- DEBUG -  [P-14] ----- add AMR edge for name relation: 0/0 new triple (640, 0:00:00.018003)
-- DEBUG -  [P-14] ----- add AMR edge for quant relation: 0/0 new triple (640, 0:00:00.016389)
-- DEBUG -  [P-14] ----- add AMR edge for polarity relation: 0/0 new triple (640, 0:00:00.023937)
-- INFO -  [P-14] ----- update AMR edge role 1: 4/4 new triples (644, 0:00:00.027476)
-- INFO -  [P-14] ----- add AMR root: 5/5 new triples (649, 0:00:00.011231)
+- DEBUG -  [P-14] ----- reclassify AMR-LD concept (1): 0/0 new triple (573, 0:00:00.069378)
+- DEBUG -  [P-14] ----- reclassify AMR-LD concept (2): 0/0 new triple (573, 0:00:00.045121)
+- INFO -  [P-14] ----- reclassify AMR-LD concept (3): 4/4 new triples (577, 0:00:00.028636)
+- INFO -  [P-14] ----- reclassify AMR-LD concept (4): 12/12 new triples (589, 0:00:00.045703)
+- INFO -  [P-14] ----- reclassify AMR-LD concept (5): 4/4 new triples (593, 0:00:00.034539)
+- DEBUG -  [P-14] ----- reify roles as concept: 0/0 new triple (593, 0:00:00.037484)
+- INFO -  [P-14] ----- reclassify existing variable: 20/20 new triples (613, 0:00:00.015418)
+- DEBUG -  [P-14] ----- add new variable for reified concept: 0/0 new triple (613, 0:00:00.047861)
+- INFO -  [P-14] ----- add AMR leaf for reclassified concept: 15/15 new triples (628, 0:00:00.012226)
+- DEBUG -  [P-14] ----- add AMR leaf for reified concept: 0/0 new triple (628, 0:00:00.010391)
+- INFO -  [P-14] ----- add AMR edge for core relation: 12/12 new triples (640, 0:00:00.074782)
+- DEBUG -  [P-14] ----- add AMR edge for reified concept: 0/0 new triple (640, 0:00:00.021236)
+- DEBUG -  [P-14] ----- add AMR edge for name relation: 0/0 new triple (640, 0:00:00.021290)
+- DEBUG -  [P-14] ----- add AMR edge for quant relation: 0/0 new triple (640, 0:00:00.018363)
+- DEBUG -  [P-14] ----- add AMR edge for polarity relation: 0/0 new triple (640, 0:00:00.028233)
+- INFO -  [P-14] ----- update AMR edge role 1: 4/4 new triples (644, 0:00:00.031247)
+- INFO -  [P-14] ----- add AMR root: 5/5 new triples (649, 0:00:00.010147)
 - DEBUG -  [P-14] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-14] ----- step: Preprocessing
 - DEBUG -  [P-14] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1152,38 +1402,38 @@
 - DEBUG -  [P-14] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-14] -- Step 2: Transduction
 - INFO -  [P-14] --- Sequence: atomic extraction sequence
-- INFO -  [P-14] ----- extract atom classes: 24/24 new triples (673, 0:00:00.122285)
-- DEBUG -  [P-14] ----- extract atom individuals: 0/0 new triple (673, 0:00:00.015161)
-- INFO -  [P-14] ----- extract atomic properties: 13/13 new triples (686, 0:00:00.059356)
-- DEBUG -  [P-14] ----- extract atom values: 0/0 new triple (686, 0:00:00.014211)
-- DEBUG -  [P-14] ----- extract atom phenomena: 0/0 new triple (686, 0:00:00.022342)
-- INFO -  [P-14] ----- propagate atom relations: 7/16 new triples (693, 0:00:00.354577)
+- INFO -  [P-14] ----- extract atom classes: 24/24 new triples (673, 0:00:00.123689)
+- DEBUG -  [P-14] ----- extract atom individuals: 0/0 new triple (673, 0:00:00.012824)
+- INFO -  [P-14] ----- extract atomic properties: 13/13 new triples (686, 0:00:00.039042)
+- DEBUG -  [P-14] ----- extract atom values: 0/0 new triple (686, 0:00:00.006815)
+- DEBUG -  [P-14] ----- extract atom phenomena: 0/0 new triple (686, 0:00:00.008178)
+- INFO -  [P-14] ----- propagate atom relations: 7/16 new triples (693, 0:00:00.291655)
 - INFO -  [P-14] --- Sequence: classification sequence (1)
-- DEBUG -  [P-14] ----- classify modality phenomena: 0/0 new triple (693, 0:00:00.019530)
-- DEBUG -  [P-14] ----- reclassify argument property to class: 0/0 new triple (693, 0:00:00.024829)
+- DEBUG -  [P-14] ----- classify modality phenomena: 0/0 new triple (693, 0:00:00.020627)
+- DEBUG -  [P-14] ----- reclassify argument property to class: 0/0 new triple (693, 0:00:00.028719)
 - INFO -  [P-14] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-14] ----- analyze "polarity" phenomena (1): 0/0 new triple (693, 0:00:00.007008)
-- DEBUG -  [P-14] ----- analyze "polarity" phenomena (2): 0/0 new triple (693, 0:00:00.016874)
-- DEBUG -  [P-14] ----- analyze "polarity" phenomena (3): 0/0 new triple (693, 0:00:00.021906)
-- DEBUG -  [P-14] ----- analyze "polarity" phenomena (4): 0/0 new triple (693, 0:00:00.035734)
-- DEBUG -  [P-14] ----- analyze "polarity" phenomena (5): 0/0 new triple (693, 0:00:00.050288)
-- INFO -  [P-14] ----- analyze modifier phenomena (mod): 42/48 new triples (735, 0:00:00.324349)
-- DEBUG -  [P-14] ----- classify modality phenomena: 0/0 new triple (735, 0:00:00.021016)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (1): 0/0 new triple (693, 0:00:00.009400)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (2): 0/0 new triple (693, 0:00:00.018393)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (3): 0/0 new triple (693, 0:00:00.016460)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (4): 0/0 new triple (693, 0:00:00.036264)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (5): 0/0 new triple (693, 0:00:00.041728)
+- INFO -  [P-14] ----- analyze modifier phenomena (mod): 42/48 new triples (735, 0:00:00.177793)
+- DEBUG -  [P-14] ----- classify modality phenomena: 0/0 new triple (735, 0:00:00.021570)
 - INFO -  [P-14] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-14] ----- analyze "or" phenomena (1): 0/0 new triple (735, 0:00:00.014549)
-- DEBUG -  [P-14] ----- analyze "or" phenomena (2): 0/0 new triple (735, 0:00:00.012986)
-- DEBUG -  [P-14] ----- analyze "and" phenomena (1): 0/0 new triple (735, 0:00:00.010902)
-- DEBUG -  [P-14] ----- analyze "and" phenomena (2): 0/0 new triple (735, 0:00:00.010700)
+- DEBUG -  [P-14] ----- analyze "or" phenomena (1): 0/0 new triple (735, 0:00:00.012531)
+- DEBUG -  [P-14] ----- analyze "or" phenomena (2): 0/0 new triple (735, 0:00:00.012023)
+- DEBUG -  [P-14] ----- analyze "and" phenomena (1): 0/0 new triple (735, 0:00:00.010610)
+- DEBUG -  [P-14] ----- analyze "and" phenomena (2): 0/0 new triple (735, 0:00:00.011917)
 - INFO -  [P-14] --- Sequence: composite class extraction sequence
-- DEBUG -  [P-14] ----- extract composite classes (1): 0/0 new triple (735, 0:00:00.041816)
-- INFO -  [P-14] ----- extract composite classes (2): 27/29 new triples (762, 0:00:00.154999)
+- DEBUG -  [P-14] ----- extract composite classes (1): 0/0 new triple (735, 0:00:00.031871)
+- INFO -  [P-14] ----- extract composite classes (2): 27/29 new triples (762, 0:00:00.123280)
 - INFO -  [P-14] --- Sequence: classification sequence (2)
-- INFO -  [P-14] ----- classify class net as entity from core arguments: 8/27 new triples (770, 0:00:00.105148)
-- DEBUG -  [P-14] ----- classify class net as entity from :part relation: 0/0 new triple (770, 0:00:00.012303)
-- DEBUG -  [P-14] ----- classify class net as entity from degree arguments: 0/0 new triple (770, 0:00:00.019379)
-- DEBUG -  [P-14] ----- Associate mother to class net from :domain relation: 0/0 new triple (770, 0:00:00.012190)
-- DEBUG -  [P-14] ----- Propagate individuals to net with same base node: 0/4 new triple (770, 0:00:00.042215)
-- DEBUG -  [P-14] ----- Propagate individuals to net with domain link: 0/0 new triple (770, 0:00:00.008465)
+- INFO -  [P-14] ----- classify class net as entity from core arguments: 8/27 new triples (770, 0:00:00.091556)
+- DEBUG -  [P-14] ----- classify class net as entity from :part relation: 0/0 new triple (770, 0:00:00.010008)
+- DEBUG -  [P-14] ----- classify class net as entity from degree arguments: 0/0 new triple (770, 0:00:00.016460)
+- DEBUG -  [P-14] ----- Associate mother to class net from :domain relation: 0/0 new triple (770, 0:00:00.008702)
+- DEBUG -  [P-14] ----- Propagate individuals to net with same base node: 0/4 new triple (770, 0:00:00.043930)
+- DEBUG -  [P-14] ----- Propagate individuals to net with domain link: 0/0 new triple (770, 0:00:00.008775)
 - DEBUG -  [P-14] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-14] ----- step: Transduction
 - DEBUG -  [P-14] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1191,9 +1441,9 @@
 - DEBUG -  [P-14] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-14] -- Step 3: Generation
 - INFO -  [P-14] --- Sequence: OWL Generation Sequence
-- INFO -  [P-14] ----- generate OWL class: 29/29 new triples (799, 0:00:00.298732)
-- INFO -  [P-14] ----- generate OWL property: 4/4 new triples (803, 0:00:00.037521)
-- INFO -  [P-14] ----- generate OWL individual: 4/8 new triples (807, 0:00:00.083396)
+- INFO -  [P-14] ----- generate OWL class: 29/29 new triples (799, 0:00:00.387213)
+- INFO -  [P-14] ----- generate OWL property: 4/4 new triples (803, 0:00:00.039237)
+- INFO -  [P-14] ----- generate OWL individual: 4/8 new triples (807, 0:00:00.092470)
 - DEBUG -  [P-14] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-14] ----- step: Generation
 - DEBUG -  [P-14] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1226,33 +1476,83 @@
 - DEBUG -  [P-15] ----- Total rule number: 0
 - INFO -  [P-15] -- Step 1: Preprocessing
 - INFO -  [P-15] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-15] ----- fix AMR bug (1): 0/0 new triple (635, 0:00:00.013550)
+- DEBUG -  [P-15] ----- fix AMR bug (1): 0/0 new triple (635, 0:00:00.016145)
 - INFO -  [P-15] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-15] ----- reclassify AMR-LD concept (1): 5/5 new triples (640, 0:00:00.158256)
-- DEBUG -  [P-15] ----- reclassify AMR-LD concept (2): 0/0 new triple (640, 0:00:00.043043)
-- INFO -  [P-15] ----- reclassify AMR-LD concept (3): 16/16 new triples (656, 0:00:00.032617)
-- INFO -  [P-15] ----- reclassify AMR-LD concept (4): 20/20 new triples (676, 0:00:00.043543)
-- INFO -  [P-15] ----- reclassify AMR-LD concept (5): 8/8 new triples (684, 0:00:00.028157)
-- DEBUG -  [P-15] ----- reify roles as concept: 0/0 new triple (684, 0:00:00.043380)
-- INFO -  [P-15] ----- reclassify existing variable: 89/89 new triples (773, 0:00:00.020110)
-- DEBUG -  [P-15] ----- add new variable for reified concept: 0/0 new triple (773, 0:00:00.048724)
-- INFO -  [P-15] ----- add AMR leaf for reclassified concept: 60/60 new triples (833, 0:00:00.023963)
-- DEBUG -  [P-15] ----- add AMR leaf for reified concept: 0/0 new triple (833, 0:00:00.012046)
-- INFO -  [P-15] ----- add AMR edge for core relation: 57/57 new triples (890, 0:00:00.131630)
-- DEBUG -  [P-15] ----- add AMR edge for reified concept: 0/0 new triple (890, 0:00:00.032996)
-- INFO -  [P-15] ----- add AMR edge for name relation: 45/45 new triples (935, 0:00:00.027362)
-- ERROR -  [P-15] *** *** **** Assertion Error *** *** *** 
- Object None must be an rdflib term
-- ERROR -  [P-15] *** Error while processing extraction (apply_step) ***
-- DEBUG -  [P-15] ----- step_name = Preprocessing
-- DEBUG -  [P-15] ----- len(step_sequence_def) = 2
-- DEBUG -  [P-15] ----- last sequence def = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]
-- ERROR -  [P-15]  *** Error while processing extraction (apply) ***
-- DEBUG -  [P-15] ----- config.extraction_scheme = owl_amr_scheme_1
-- DEBUG -  [P-15] ----- rule_dir = amr_master_rule/
-- DEBUG -  [P-15] ----- scheme = {'Preprocessing': [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]], 'Transduction': [['atomic extraction sequence', <function extract_atom_class at 0x7f64b5fea980>, <function extract_atom_individual at 0x7f64b5feafc0>, <function extract_atom_property at 0x7f64b5feb7e0>, <function extract_atom_value at 0x7f64b5febe20>, <function extract_atom_phenomena at 0x7f64b5fe0400>, <function propagate_atom_relation at 0x7f64b5fe0860>], ['classification sequence (1)', <function classify_modality_phenomena at 0x7f64b5fe13a0>, <function reclassify_argument_property_to_class at 0x7f64b5fe16c0>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f64b5fe2a20>, <function analyze_phenomena_polarity_2 at 0x7f64b5fe2d40>, <function analyze_phenomena_polarity_3 at 0x7f64b5fe3060>, <function analyze_phenomena_polarity_4 at 0x7f64b5fe3380>, <function analyze_phenomena_polarity_5 at 0x7f64b5fe36a0>, <function analyze_phenomena_mod_1 at 0x7f64b5fe3d80>, <function classify_modality_phenomena at 0x7f64b5fe13a0>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f64b5f48540>, <function analyze_phenomena_or_2 at 0x7f64b5f48cc0>, <function analyze_phenomena_and_1 at 0x7f64b5f49260>, <function analyze_phenomena_and_2 at 0x7f64b5f49760>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f64b5fe0cc0>, <function extract_composite_class_2 at 0x7f64b5fe1120>], ['classification sequence (2)', <function classify_entity_from_core_arguments at 0x7f64b5fe1940>, <function classify_entity_from_part_relation at 0x7f64b5fe1c60>, <function classify_entity_from_degree_arguments at 0x7f64b5fe1ee0>, <function classify_mother_from_domain_relation at 0x7f64b5fe2160>, <function propagate_individual_1 at 0x7f64b5fe23e0>, <function propagate_individual_2 at 0x7f64b5fe2480>]], 'Generation': [['OWL Generation Sequence', <function generate_owl_class at 0x7f64b5f4b060>, <function generate_owl_property at 0x7f64b5f4a160>, <function generate_owl_individual at 0x7f64b5f4b880>]]}
-- DEBUG -  [P-15] ----- step = Preprocessing, [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]]
-- INFO -  [P-15] Failure
+- INFO -  [P-15] ----- reclassify AMR-LD concept (1): 5/5 new triples (640, 0:00:00.089582)
+- DEBUG -  [P-15] ----- reclassify AMR-LD concept (2): 0/0 new triple (640, 0:00:00.046320)
+- INFO -  [P-15] ----- reclassify AMR-LD concept (3): 16/16 new triples (656, 0:00:00.027813)
+- INFO -  [P-15] ----- reclassify AMR-LD concept (4): 20/20 new triples (676, 0:00:00.053573)
+- INFO -  [P-15] ----- reclassify AMR-LD concept (5): 8/8 new triples (684, 0:00:00.029045)
+- DEBUG -  [P-15] ----- reify roles as concept: 0/0 new triple (684, 0:00:00.042987)
+- INFO -  [P-15] ----- reclassify existing variable: 89/89 new triples (773, 0:00:00.020835)
+- DEBUG -  [P-15] ----- add new variable for reified concept: 0/0 new triple (773, 0:00:00.044230)
+- INFO -  [P-15] ----- add AMR leaf for reclassified concept: 60/60 new triples (833, 0:00:00.026220)
+- DEBUG -  [P-15] ----- add AMR leaf for reified concept: 0/0 new triple (833, 0:00:00.013578)
+- INFO -  [P-15] ----- add AMR edge for core relation: 57/57 new triples (890, 0:00:00.120564)
+- DEBUG -  [P-15] ----- add AMR edge for reified concept: 0/0 new triple (890, 0:00:00.021025)
+- INFO -  [P-15] ----- add AMR edge for name relation: 45/45 new triples (935, 0:00:00.023724)
+- DEBUG -  [P-15] ----- add AMR edge for quant relation: 0/0 new triple (935, 0:00:00.028104)
+- DEBUG -  [P-15] ----- add AMR edge for polarity relation: 0/0 new triple (935, 0:00:00.031325)
+- INFO -  [P-15] ----- update AMR edge role 1: 28/28 new triples (963, 0:00:00.111270)
+- INFO -  [P-15] ----- add AMR root: 5/5 new triples (968, 0:00:00.010628)
+- DEBUG -  [P-15] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-15] ----- step: Preprocessing
+- DEBUG -  [P-15] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-15] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-15] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-15] -- Step 2: Transduction
+- INFO -  [P-15] --- Sequence: atomic extraction sequence
+- INFO -  [P-15] ----- extract atom classes: 90/90 new triples (1058, 0:00:00.470013)
+- INFO -  [P-15] ----- extract atom individuals: 72/72 new triples (1130, 0:00:00.286216)
+- INFO -  [P-15] ----- extract atomic properties: 51/51 new triples (1181, 0:00:00.226227)
+- INFO -  [P-15] ----- extract atom values: 45/45 new triples (1226, 0:00:00.209842)
+- INFO -  [P-15] ----- extract atom phenomena: 7/7 new triples (1233, 0:00:00.037244)
+- INFO -  [P-15] ----- propagate atom relations: 62/202 new triples (1295, 0:00:02.883500)
+- INFO -  [P-15] --- Sequence: classification sequence (1)
+- DEBUG -  [P-15] ----- classify modality phenomena: 0/0 new triple (1295, 0:00:00.022476)
+- INFO -  [P-15] ----- reclassify argument property to class: 12/16 new triples (1307, 0:00:00.069367)
+- INFO -  [P-15] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (1): 0/0 new triple (1307, 0:00:00.008769)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (2): 0/0 new triple (1307, 0:00:00.017363)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (3): 0/0 new triple (1307, 0:00:00.016865)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (4): 0/0 new triple (1307, 0:00:00.035513)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (5): 0/0 new triple (1307, 0:00:00.039813)
+- INFO -  [P-15] ----- analyze modifier phenomena (mod): 22/26 new triples (1329, 0:00:00.090941)
+- DEBUG -  [P-15] ----- classify modality phenomena: 0/0 new triple (1329, 0:00:00.022658)
+- INFO -  [P-15] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-15] ----- analyze "or" phenomena (1): 0/0 new triple (1329, 0:00:00.012932)
+- DEBUG -  [P-15] ----- analyze "or" phenomena (2): 0/0 new triple (1329, 0:00:00.011628)
+- INFO -  [P-15] ----- analyze "and" phenomena (1): 9/126 new triples (1338, 0:00:00.231366)
+- DEBUG -  [P-15] ----- analyze "and" phenomena (2): 0/0 new triple (1338, 0:00:00.011140)
+- INFO -  [P-15] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-15] ----- extract composite classes (1): 0/0 new triple (1338, 0:00:00.030114)
+- DEBUG -  [P-15] ----- extract composite classes (2): 0/0 new triple (1338, 0:00:00.033475)
+- INFO -  [P-15] --- Sequence: classification sequence (2)
+- INFO -  [P-15] ----- classify class net as entity from core arguments: 24/147 new triples (1362, 0:00:00.299504)
+- DEBUG -  [P-15] ----- classify class net as entity from :part relation: 0/0 new triple (1362, 0:00:00.010293)
+- DEBUG -  [P-15] ----- classify class net as entity from degree arguments: 0/0 new triple (1362, 0:00:00.020538)
+- DEBUG -  [P-15] ----- Associate mother to class net from :domain relation: 0/0 new triple (1362, 0:00:00.010320)
+- DEBUG -  [P-15] ----- Propagate individuals to net with same base node: 0/110 new triple (1362, 0:00:00.330521)
+- DEBUG -  [P-15] ----- Propagate individuals to net with domain link: 0/0 new triple (1362, 0:00:00.010847)
+- DEBUG -  [P-15] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-15] ----- step: Transduction
+- DEBUG -  [P-15] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-15] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-15] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-15] -- Step 3: Generation
+- INFO -  [P-15] --- Sequence: OWL Generation Sequence
+- INFO -  [P-15] ----- generate OWL class: 31/31 new triples (1393, 0:00:00.319966)
+- INFO -  [P-15] ----- generate OWL property: 12/12 new triples (1405, 0:00:00.114740)
+- INFO -  [P-15] ----- generate OWL individual: 38/40 new triples (1443, 0:00:00.419799)
+- DEBUG -  [P-15] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-15] ----- step: Generation
+- DEBUG -  [P-15] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-15] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-15] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- DEBUG -  [P-15] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-15] ----- Number of factoids: 83
+- DEBUG -  [P-15] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-15] Success (83 extracted triple(s))
 - INFO - 
  [P-16]     *** extraction from sentence 16 *** 
 - INFO -  [P-16] -- Work Structure Preparation
@@ -1276,25 +1576,25 @@
 - DEBUG -  [P-16] ----- Total rule number: 0
 - INFO -  [P-16] -- Step 1: Preprocessing
 - INFO -  [P-16] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-16] ----- fix AMR bug (1): 0/0 new triple (621, 0:00:00.023803)
+- DEBUG -  [P-16] ----- fix AMR bug (1): 0/0 new triple (621, 0:00:00.017160)
 - INFO -  [P-16] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-16] ----- reclassify AMR-LD concept (1): 5/5 new triples (626, 0:00:00.114863)
-- INFO -  [P-16] ----- reclassify AMR-LD concept (2): 4/4 new triples (630, 0:00:00.050357)
-- INFO -  [P-16] ----- reclassify AMR-LD concept (3): 12/12 new triples (642, 0:00:00.033291)
-- INFO -  [P-16] ----- reclassify AMR-LD concept (4): 48/48 new triples (690, 0:00:00.049700)
-- DEBUG -  [P-16] ----- reclassify AMR-LD concept (5): 0/0 new triple (690, 0:00:00.027552)
-- DEBUG -  [P-16] ----- reify roles as concept: 0/0 new triple (690, 0:00:00.036923)
-- INFO -  [P-16] ----- reclassify existing variable: 76/76 new triples (766, 0:00:00.019303)
-- DEBUG -  [P-16] ----- add new variable for reified concept: 0/0 new triple (766, 0:00:00.044084)
-- INFO -  [P-16] ----- add AMR leaf for reclassified concept: 57/57 new triples (823, 0:00:00.029224)
-- DEBUG -  [P-16] ----- add AMR leaf for reified concept: 0/0 new triple (823, 0:00:00.012101)
-- INFO -  [P-16] ----- add AMR edge for core relation: 54/54 new triples (877, 0:00:00.106291)
-- DEBUG -  [P-16] ----- add AMR edge for reified concept: 0/0 new triple (877, 0:00:00.020307)
-- DEBUG -  [P-16] ----- add AMR edge for name relation: 0/0 new triple (877, 0:00:00.020540)
-- INFO -  [P-16] ----- add AMR edge for quant relation: 5/5 new triples (882, 0:00:00.024389)
-- DEBUG -  [P-16] ----- add AMR edge for polarity relation: 0/0 new triple (882, 0:00:00.031396)
-- INFO -  [P-16] ----- update AMR edge role 1: 17/17 new triples (899, 0:00:00.100120)
-- INFO -  [P-16] ----- add AMR root: 5/5 new triples (904, 0:00:00.014729)
+- INFO -  [P-16] ----- reclassify AMR-LD concept (1): 5/5 new triples (626, 0:00:00.099659)
+- INFO -  [P-16] ----- reclassify AMR-LD concept (2): 4/4 new triples (630, 0:00:00.048258)
+- INFO -  [P-16] ----- reclassify AMR-LD concept (3): 12/12 new triples (642, 0:00:00.036090)
+- INFO -  [P-16] ----- reclassify AMR-LD concept (4): 48/48 new triples (690, 0:00:00.050891)
+- DEBUG -  [P-16] ----- reclassify AMR-LD concept (5): 0/0 new triple (690, 0:00:00.032092)
+- DEBUG -  [P-16] ----- reify roles as concept: 0/0 new triple (690, 0:00:00.038331)
+- INFO -  [P-16] ----- reclassify existing variable: 76/76 new triples (766, 0:00:00.018486)
+- DEBUG -  [P-16] ----- add new variable for reified concept: 0/0 new triple (766, 0:00:00.046598)
+- INFO -  [P-16] ----- add AMR leaf for reclassified concept: 57/57 new triples (823, 0:00:00.028520)
+- DEBUG -  [P-16] ----- add AMR leaf for reified concept: 0/0 new triple (823, 0:00:00.012487)
+- INFO -  [P-16] ----- add AMR edge for core relation: 54/54 new triples (877, 0:00:00.105723)
+- DEBUG -  [P-16] ----- add AMR edge for reified concept: 0/0 new triple (877, 0:00:00.024002)
+- DEBUG -  [P-16] ----- add AMR edge for name relation: 0/0 new triple (877, 0:00:00.020460)
+- INFO -  [P-16] ----- add AMR edge for quant relation: 5/5 new triples (882, 0:00:00.024755)
+- DEBUG -  [P-16] ----- add AMR edge for polarity relation: 0/0 new triple (882, 0:00:00.112811)
+- INFO -  [P-16] ----- update AMR edge role 1: 17/17 new triples (899, 0:00:00.089522)
+- INFO -  [P-16] ----- add AMR root: 5/5 new triples (904, 0:00:00.011120)
 - DEBUG -  [P-16] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-16] ----- step: Preprocessing
 - DEBUG -  [P-16] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1302,38 +1602,38 @@
 - DEBUG -  [P-16] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-16] -- Step 2: Transduction
 - INFO -  [P-16] --- Sequence: atomic extraction sequence
-- INFO -  [P-16] ----- extract atom classes: 78/78 new triples (982, 0:00:00.430377)
-- DEBUG -  [P-16] ----- extract atom individuals: 0/0 new triple (982, 0:00:00.017973)
-- INFO -  [P-16] ----- extract atomic properties: 50/50 new triples (1032, 0:00:00.218892)
-- INFO -  [P-16] ----- extract atom values: 5/5 new triples (1037, 0:00:00.036793)
-- INFO -  [P-16] ----- extract atom phenomena: 14/14 new triples (1051, 0:00:00.065838)
-- INFO -  [P-16] ----- propagate atom relations: 26/66 new triples (1077, 0:00:01.371689)
+- INFO -  [P-16] ----- extract atom classes: 78/78 new triples (982, 0:00:00.378497)
+- DEBUG -  [P-16] ----- extract atom individuals: 0/0 new triple (982, 0:00:00.019667)
+- INFO -  [P-16] ----- extract atomic properties: 50/50 new triples (1032, 0:00:00.149488)
+- INFO -  [P-16] ----- extract atom values: 5/5 new triples (1037, 0:00:00.028342)
+- INFO -  [P-16] ----- extract atom phenomena: 14/14 new triples (1051, 0:00:00.071731)
+- INFO -  [P-16] ----- propagate atom relations: 26/66 new triples (1077, 0:00:01.264834)
 - INFO -  [P-16] --- Sequence: classification sequence (1)
-- DEBUG -  [P-16] ----- classify modality phenomena: 0/0 new triple (1077, 0:00:00.025479)
-- INFO -  [P-16] ----- reclassify argument property to class: 10/12 new triples (1087, 0:00:00.089407)
+- DEBUG -  [P-16] ----- classify modality phenomena: 0/0 new triple (1077, 0:00:00.027058)
+- INFO -  [P-16] ----- reclassify argument property to class: 10/12 new triples (1087, 0:00:00.067430)
 - INFO -  [P-16] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-16] ----- analyze "polarity" phenomena (1): 0/0 new triple (1087, 0:00:00.009166)
-- DEBUG -  [P-16] ----- analyze "polarity" phenomena (2): 0/0 new triple (1087, 0:00:00.022354)
-- DEBUG -  [P-16] ----- analyze "polarity" phenomena (3): 0/0 new triple (1087, 0:00:00.023436)
-- DEBUG -  [P-16] ----- analyze "polarity" phenomena (4): 0/0 new triple (1087, 0:00:00.044786)
-- DEBUG -  [P-16] ----- analyze "polarity" phenomena (5): 0/0 new triple (1087, 0:00:00.040860)
-- INFO -  [P-16] ----- analyze modifier phenomena (mod): 108/128 new triples (1195, 0:00:00.557275)
-- DEBUG -  [P-16] ----- classify modality phenomena: 0/0 new triple (1195, 0:00:00.020530)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (1): 0/0 new triple (1087, 0:00:00.009646)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (2): 0/0 new triple (1087, 0:00:00.020764)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (3): 0/0 new triple (1087, 0:00:00.017602)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (4): 0/0 new triple (1087, 0:00:00.036687)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (5): 0/0 new triple (1087, 0:00:00.037709)
+- INFO -  [P-16] ----- analyze modifier phenomena (mod): 108/128 new triples (1195, 0:00:00.440829)
+- DEBUG -  [P-16] ----- classify modality phenomena: 0/0 new triple (1195, 0:00:00.021597)
 - INFO -  [P-16] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-16] ----- analyze "or" phenomena (1): 0/0 new triple (1195, 0:00:00.016869)
-- DEBUG -  [P-16] ----- analyze "or" phenomena (2): 0/0 new triple (1195, 0:00:00.016802)
-- INFO -  [P-16] ----- analyze "and" phenomena (1): 4/52 new triples (1199, 0:00:00.148550)
-- DEBUG -  [P-16] ----- analyze "and" phenomena (2): 0/0 new triple (1199, 0:00:00.011164)
+- DEBUG -  [P-16] ----- analyze "or" phenomena (1): 0/0 new triple (1195, 0:00:00.011916)
+- DEBUG -  [P-16] ----- analyze "or" phenomena (2): 0/0 new triple (1195, 0:00:00.012375)
+- INFO -  [P-16] ----- analyze "and" phenomena (1): 4/52 new triples (1199, 0:00:00.159432)
+- DEBUG -  [P-16] ----- analyze "and" phenomena (2): 0/0 new triple (1199, 0:00:00.013348)
 - INFO -  [P-16] --- Sequence: composite class extraction sequence
-- INFO -  [P-16] ----- extract composite classes (1): 42/58 new triples (1241, 0:00:00.225540)
-- DEBUG -  [P-16] ----- extract composite classes (2): 0/0 new triple (1241, 0:00:00.035136)
+- INFO -  [P-16] ----- extract composite classes (1): 42/58 new triples (1241, 0:00:00.252061)
+- DEBUG -  [P-16] ----- extract composite classes (2): 0/0 new triple (1241, 0:00:00.036069)
 - INFO -  [P-16] --- Sequence: classification sequence (2)
-- INFO -  [P-16] ----- classify class net as entity from core arguments: 16/101 new triples (1257, 0:00:00.311754)
-- DEBUG -  [P-16] ----- classify class net as entity from :part relation: 0/0 new triple (1257, 0:00:00.013559)
-- DEBUG -  [P-16] ----- classify class net as entity from degree arguments: 0/0 new triple (1257, 0:00:00.021058)
-- DEBUG -  [P-16] ----- Associate mother to class net from :domain relation: 0/0 new triple (1257, 0:00:00.012449)
-- DEBUG -  [P-16] ----- Propagate individuals to net with same base node: 0/10 new triple (1257, 0:00:00.105380)
-- DEBUG -  [P-16] ----- Propagate individuals to net with domain link: 0/0 new triple (1257, 0:00:00.012940)
+- INFO -  [P-16] ----- classify class net as entity from core arguments: 16/101 new triples (1257, 0:00:00.291443)
+- DEBUG -  [P-16] ----- classify class net as entity from :part relation: 0/0 new triple (1257, 0:00:00.009470)
+- DEBUG -  [P-16] ----- classify class net as entity from degree arguments: 0/0 new triple (1257, 0:00:00.018145)
+- DEBUG -  [P-16] ----- Associate mother to class net from :domain relation: 0/0 new triple (1257, 0:00:00.009366)
+- DEBUG -  [P-16] ----- Propagate individuals to net with same base node: 0/10 new triple (1257, 0:00:00.100737)
+- DEBUG -  [P-16] ----- Propagate individuals to net with domain link: 0/0 new triple (1257, 0:00:00.010089)
 - DEBUG -  [P-16] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-16] ----- step: Transduction
 - DEBUG -  [P-16] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1341,9 +1641,9 @@
 - DEBUG -  [P-16] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-16] -- Step 3: Generation
 - INFO -  [P-16] --- Sequence: OWL Generation Sequence
-- INFO -  [P-16] ----- generate OWL class: 81/85 new triples (1338, 0:00:01.020750)
-- INFO -  [P-16] ----- generate OWL property: 12/12 new triples (1350, 0:00:00.111140)
-- INFO -  [P-16] ----- generate OWL individual: 10/20 new triples (1360, 0:00:00.208538)
+- INFO -  [P-16] ----- generate OWL class: 81/85 new triples (1338, 0:00:00.810824)
+- INFO -  [P-16] ----- generate OWL property: 12/12 new triples (1350, 0:00:00.106275)
+- INFO -  [P-16] ----- generate OWL individual: 10/20 new triples (1360, 0:00:00.214722)
 - DEBUG -  [P-16] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-16] ----- step: Generation
 - DEBUG -  [P-16] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1376,33 +1676,83 @@
 - DEBUG -  [P-17] ----- Total rule number: 0
 - INFO -  [P-17] -- Step 1: Preprocessing
 - INFO -  [P-17] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-17] ----- fix AMR bug (1): 0/0 new triple (641, 0:00:00.016670)
+- DEBUG -  [P-17] ----- fix AMR bug (1): 0/0 new triple (641, 0:00:00.018185)
 - INFO -  [P-17] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-17] ----- reclassify AMR-LD concept (1): 15/15 new triples (656, 0:00:00.109518)
-- INFO -  [P-17] ----- reclassify AMR-LD concept (2): 12/12 new triples (668, 0:00:00.051350)
-- INFO -  [P-17] ----- reclassify AMR-LD concept (3): 16/16 new triples (684, 0:00:00.030037)
-- INFO -  [P-17] ----- reclassify AMR-LD concept (4): 28/28 new triples (712, 0:00:00.052148)
-- INFO -  [P-17] ----- reclassify AMR-LD concept (5): 8/8 new triples (720, 0:00:00.028711)
-- DEBUG -  [P-17] ----- reify roles as concept: 0/0 new triple (720, 0:00:00.036892)
-- INFO -  [P-17] ----- reclassify existing variable: 92/92 new triples (812, 0:00:00.020950)
-- DEBUG -  [P-17] ----- add new variable for reified concept: 0/0 new triple (812, 0:00:00.043943)
-- INFO -  [P-17] ----- add AMR leaf for reclassified concept: 69/69 new triples (881, 0:00:00.033596)
-- DEBUG -  [P-17] ----- add AMR leaf for reified concept: 0/0 new triple (881, 0:00:00.011274)
-- INFO -  [P-17] ----- add AMR edge for core relation: 72/72 new triples (953, 0:00:00.127677)
-- DEBUG -  [P-17] ----- add AMR edge for reified concept: 0/0 new triple (953, 0:00:00.020394)
-- DEBUG -  [P-17] ----- add AMR edge for name relation: 0/0 new triple (953, 0:00:00.023006)
-- ERROR -  [P-17] *** *** **** Assertion Error *** *** *** 
- Object None must be an rdflib term
-- ERROR -  [P-17] *** Error while processing extraction (apply_step) ***
-- DEBUG -  [P-17] ----- step_name = Preprocessing
-- DEBUG -  [P-17] ----- len(step_sequence_def) = 2
-- DEBUG -  [P-17] ----- last sequence def = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]
-- ERROR -  [P-17]  *** Error while processing extraction (apply) ***
-- DEBUG -  [P-17] ----- config.extraction_scheme = owl_amr_scheme_1
-- DEBUG -  [P-17] ----- rule_dir = amr_master_rule/
-- DEBUG -  [P-17] ----- scheme = {'Preprocessing': [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]], 'Transduction': [['atomic extraction sequence', <function extract_atom_class at 0x7f64b5fea980>, <function extract_atom_individual at 0x7f64b5feafc0>, <function extract_atom_property at 0x7f64b5feb7e0>, <function extract_atom_value at 0x7f64b5febe20>, <function extract_atom_phenomena at 0x7f64b5fe0400>, <function propagate_atom_relation at 0x7f64b5fe0860>], ['classification sequence (1)', <function classify_modality_phenomena at 0x7f64b5fe13a0>, <function reclassify_argument_property_to_class at 0x7f64b5fe16c0>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f64b5fe2a20>, <function analyze_phenomena_polarity_2 at 0x7f64b5fe2d40>, <function analyze_phenomena_polarity_3 at 0x7f64b5fe3060>, <function analyze_phenomena_polarity_4 at 0x7f64b5fe3380>, <function analyze_phenomena_polarity_5 at 0x7f64b5fe36a0>, <function analyze_phenomena_mod_1 at 0x7f64b5fe3d80>, <function classify_modality_phenomena at 0x7f64b5fe13a0>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f64b5f48540>, <function analyze_phenomena_or_2 at 0x7f64b5f48cc0>, <function analyze_phenomena_and_1 at 0x7f64b5f49260>, <function analyze_phenomena_and_2 at 0x7f64b5f49760>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f64b5fe0cc0>, <function extract_composite_class_2 at 0x7f64b5fe1120>], ['classification sequence (2)', <function classify_entity_from_core_arguments at 0x7f64b5fe1940>, <function classify_entity_from_part_relation at 0x7f64b5fe1c60>, <function classify_entity_from_degree_arguments at 0x7f64b5fe1ee0>, <function classify_mother_from_domain_relation at 0x7f64b5fe2160>, <function propagate_individual_1 at 0x7f64b5fe23e0>, <function propagate_individual_2 at 0x7f64b5fe2480>]], 'Generation': [['OWL Generation Sequence', <function generate_owl_class at 0x7f64b5f4b060>, <function generate_owl_property at 0x7f64b5f4a160>, <function generate_owl_individual at 0x7f64b5f4b880>]]}
-- DEBUG -  [P-17] ----- step = Preprocessing, [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]]
-- INFO -  [P-17] Failure
+- INFO -  [P-17] ----- reclassify AMR-LD concept (1): 15/15 new triples (656, 0:00:00.102815)
+- INFO -  [P-17] ----- reclassify AMR-LD concept (2): 12/12 new triples (668, 0:00:00.047887)
+- INFO -  [P-17] ----- reclassify AMR-LD concept (3): 16/16 new triples (684, 0:00:00.032411)
+- INFO -  [P-17] ----- reclassify AMR-LD concept (4): 28/28 new triples (712, 0:00:00.047138)
+- INFO -  [P-17] ----- reclassify AMR-LD concept (5): 8/8 new triples (720, 0:00:00.030956)
+- DEBUG -  [P-17] ----- reify roles as concept: 0/0 new triple (720, 0:00:00.040331)
+- INFO -  [P-17] ----- reclassify existing variable: 92/92 new triples (812, 0:00:00.018907)
+- DEBUG -  [P-17] ----- add new variable for reified concept: 0/0 new triple (812, 0:00:00.050441)
+- INFO -  [P-17] ----- add AMR leaf for reclassified concept: 69/69 new triples (881, 0:00:00.035059)
+- DEBUG -  [P-17] ----- add AMR leaf for reified concept: 0/0 new triple (881, 0:00:00.010714)
+- INFO -  [P-17] ----- add AMR edge for core relation: 72/72 new triples (953, 0:00:00.128406)
+- DEBUG -  [P-17] ----- add AMR edge for reified concept: 0/0 new triple (953, 0:00:00.020372)
+- DEBUG -  [P-17] ----- add AMR edge for name relation: 0/0 new triple (953, 0:00:00.023747)
+- INFO -  [P-17] ----- add AMR edge for quant relation: 8/10 new triples (961, 0:00:00.024394)
+- DEBUG -  [P-17] ----- add AMR edge for polarity relation: 0/0 new triple (961, 0:00:00.034549)
+- INFO -  [P-17] ----- update AMR edge role 1: 25/25 new triples (986, 0:00:00.106583)
+- INFO -  [P-17] ----- add AMR root: 5/5 new triples (991, 0:00:00.010594)
+- DEBUG -  [P-17] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-17] ----- step: Preprocessing
+- DEBUG -  [P-17] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-17] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-17] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-17] -- Step 2: Transduction
+- INFO -  [P-17] --- Sequence: atomic extraction sequence
+- INFO -  [P-17] ----- extract atom classes: 66/66 new triples (1057, 0:00:00.321343)
+- DEBUG -  [P-17] ----- extract atom individuals: 0/0 new triple (1057, 0:00:00.026662)
+- INFO -  [P-17] ----- extract atomic properties: 100/100 new triples (1157, 0:00:00.364940)
+- INFO -  [P-17] ----- extract atom values: 5/5 new triples (1162, 0:00:00.027110)
+- INFO -  [P-17] ----- extract atom phenomena: 28/28 new triples (1190, 0:00:00.126252)
+- INFO -  [P-17] ----- propagate atom relations: 34/96 new triples (1224, 0:00:01.592272)
+- INFO -  [P-17] --- Sequence: classification sequence (1)
+- INFO -  [P-17] ----- classify modality phenomena: 1/3 new triple (1225, 0:00:00.037650)
+- DEBUG -  [P-17] ----- reclassify argument property to class: 0/0 new triple (1225, 0:00:00.028786)
+- INFO -  [P-17] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (1): 0/0 new triple (1225, 0:00:00.010916)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (2): 0/0 new triple (1225, 0:00:00.018683)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (3): 0/0 new triple (1225, 0:00:00.017071)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (4): 0/0 new triple (1225, 0:00:00.035944)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (5): 0/0 new triple (1225, 0:00:00.038992)
+- INFO -  [P-17] ----- analyze modifier phenomena (mod): 22/26 new triples (1247, 0:00:00.093304)
+- DEBUG -  [P-17] ----- classify modality phenomena: 0/3 new triple (1247, 0:00:00.037735)
+- INFO -  [P-17] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-17] ----- analyze "or" phenomena (1): 0/0 new triple (1247, 0:00:00.012187)
+- DEBUG -  [P-17] ----- analyze "or" phenomena (2): 0/0 new triple (1247, 0:00:00.011296)
+- INFO -  [P-17] ----- analyze "and" phenomena (1): 2/14 new triples (1249, 0:00:00.145062)
+- DEBUG -  [P-17] ----- analyze "and" phenomena (2): 0/0 new triple (1249, 0:00:00.013469)
+- INFO -  [P-17] --- Sequence: composite class extraction sequence
+- INFO -  [P-17] ----- extract composite classes (1): 45/48 new triples (1294, 0:00:00.224699)
+- INFO -  [P-17] ----- extract composite classes (2): 50/54 new triples (1344, 0:00:00.224010)
+- INFO -  [P-17] --- Sequence: classification sequence (2)
+- INFO -  [P-17] ----- classify class net as entity from core arguments: 18/135 new triples (1362, 0:00:00.297018)
+- DEBUG -  [P-17] ----- classify class net as entity from :part relation: 0/0 new triple (1362, 0:00:00.010128)
+- DEBUG -  [P-17] ----- classify class net as entity from degree arguments: 0/0 new triple (1362, 0:00:00.017792)
+- DEBUG -  [P-17] ----- Associate mother to class net from :domain relation: 0/0 new triple (1362, 0:00:00.009180)
+- DEBUG -  [P-17] ----- Propagate individuals to net with same base node: 0/2 new triple (1362, 0:00:00.025875)
+- DEBUG -  [P-17] ----- Propagate individuals to net with domain link: 0/0 new triple (1362, 0:00:00.008090)
+- DEBUG -  [P-17] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-17] ----- step: Transduction
+- DEBUG -  [P-17] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-17] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-17] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-17] -- Step 3: Generation
+- INFO -  [P-17] --- Sequence: OWL Generation Sequence
+- INFO -  [P-17] ----- generate OWL class: 67/75 new triples (1429, 0:00:00.798677)
+- INFO -  [P-17] ----- generate OWL property: 28/32 new triples (1457, 0:00:00.255277)
+- INFO -  [P-17] ----- generate OWL individual: 2/4 new triples (1459, 0:00:00.051819)
+- DEBUG -  [P-17] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-17] ----- step: Generation
+- DEBUG -  [P-17] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-17] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-17] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- DEBUG -  [P-17] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-17] ----- Number of factoids: 111
+- DEBUG -  [P-17] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-17] Success (111 extracted triple(s))
 - INFO - 
  [P-18]     *** extraction from sentence 18 *** 
 - INFO -  [P-18] -- Work Structure Preparation
@@ -1426,25 +1776,25 @@
 - DEBUG -  [P-18] ----- Total rule number: 0
 - INFO -  [P-18] -- Step 1: Preprocessing
 - INFO -  [P-18] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-18] ----- fix AMR bug (1): 0/0 new triple (593, 0:00:00.015013)
+- DEBUG -  [P-18] ----- fix AMR bug (1): 0/0 new triple (593, 0:00:00.016551)
 - INFO -  [P-18] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-18] ----- reclassify AMR-LD concept (1): 5/5 new triples (598, 0:00:00.083010)
-- DEBUG -  [P-18] ----- reclassify AMR-LD concept (2): 0/0 new triple (598, 0:00:00.047373)
-- INFO -  [P-18] ----- reclassify AMR-LD concept (3): 4/4 new triples (602, 0:00:00.027611)
-- INFO -  [P-18] ----- reclassify AMR-LD concept (4): 28/28 new triples (630, 0:00:00.049108)
-- INFO -  [P-18] ----- reclassify AMR-LD concept (5): 4/4 new triples (634, 0:00:00.026967)
-- DEBUG -  [P-18] ----- reify roles as concept: 0/0 new triple (634, 0:00:00.111383)
-- INFO -  [P-18] ----- reclassify existing variable: 44/44 new triples (678, 0:00:00.020557)
-- DEBUG -  [P-18] ----- add new variable for reified concept: 0/0 new triple (678, 0:00:00.047104)
-- INFO -  [P-18] ----- add AMR leaf for reclassified concept: 33/33 new triples (711, 0:00:00.015738)
-- DEBUG -  [P-18] ----- add AMR leaf for reified concept: 0/0 new triple (711, 0:00:00.011075)
-- INFO -  [P-18] ----- add AMR edge for core relation: 30/30 new triples (741, 0:00:00.083143)
-- DEBUG -  [P-18] ----- add AMR edge for reified concept: 0/0 new triple (741, 0:00:00.019777)
-- DEBUG -  [P-18] ----- add AMR edge for name relation: 0/0 new triple (741, 0:00:00.017493)
-- DEBUG -  [P-18] ----- add AMR edge for quant relation: 0/0 new triple (741, 0:00:00.020889)
-- DEBUG -  [P-18] ----- add AMR edge for polarity relation: 0/0 new triple (741, 0:00:00.025961)
-- INFO -  [P-18] ----- update AMR edge role 1: 9/9 new triples (750, 0:00:00.048162)
-- INFO -  [P-18] ----- add AMR root: 5/5 new triples (755, 0:00:00.010503)
+- INFO -  [P-18] ----- reclassify AMR-LD concept (1): 5/5 new triples (598, 0:00:00.085833)
+- DEBUG -  [P-18] ----- reclassify AMR-LD concept (2): 0/0 new triple (598, 0:00:00.048264)
+- INFO -  [P-18] ----- reclassify AMR-LD concept (3): 4/4 new triples (602, 0:00:00.029874)
+- INFO -  [P-18] ----- reclassify AMR-LD concept (4): 28/28 new triples (630, 0:00:00.049591)
+- INFO -  [P-18] ----- reclassify AMR-LD concept (5): 4/4 new triples (634, 0:00:00.032438)
+- DEBUG -  [P-18] ----- reify roles as concept: 0/0 new triple (634, 0:00:00.037796)
+- INFO -  [P-18] ----- reclassify existing variable: 44/44 new triples (678, 0:00:00.016223)
+- DEBUG -  [P-18] ----- add new variable for reified concept: 0/0 new triple (678, 0:00:00.049396)
+- INFO -  [P-18] ----- add AMR leaf for reclassified concept: 33/33 new triples (711, 0:00:00.016519)
+- DEBUG -  [P-18] ----- add AMR leaf for reified concept: 0/0 new triple (711, 0:00:00.011649)
+- INFO -  [P-18] ----- add AMR edge for core relation: 30/30 new triples (741, 0:00:00.088658)
+- DEBUG -  [P-18] ----- add AMR edge for reified concept: 0/0 new triple (741, 0:00:00.023353)
+- DEBUG -  [P-18] ----- add AMR edge for name relation: 0/0 new triple (741, 0:00:00.017224)
+- DEBUG -  [P-18] ----- add AMR edge for quant relation: 0/0 new triple (741, 0:00:00.020078)
+- DEBUG -  [P-18] ----- add AMR edge for polarity relation: 0/0 new triple (741, 0:00:00.028369)
+- INFO -  [P-18] ----- update AMR edge role 1: 9/9 new triples (750, 0:00:00.051962)
+- INFO -  [P-18] ----- add AMR root: 5/5 new triples (755, 0:00:00.009455)
 - DEBUG -  [P-18] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-18] ----- step: Preprocessing
 - DEBUG -  [P-18] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1452,38 +1802,38 @@
 - DEBUG -  [P-18] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-18] -- Step 2: Transduction
 - INFO -  [P-18] --- Sequence: atomic extraction sequence
-- INFO -  [P-18] ----- extract atom classes: 54/54 new triples (809, 0:00:00.253492)
-- DEBUG -  [P-18] ----- extract atom individuals: 0/0 new triple (809, 0:00:00.014188)
-- INFO -  [P-18] ----- extract atomic properties: 13/13 new triples (822, 0:00:00.039925)
-- DEBUG -  [P-18] ----- extract atom values: 0/0 new triple (822, 0:00:00.006406)
-- INFO -  [P-18] ----- extract atom phenomena: 7/7 new triples (829, 0:00:00.036767)
-- INFO -  [P-18] ----- propagate atom relations: 14/36 new triples (843, 0:00:00.664899)
+- INFO -  [P-18] ----- extract atom classes: 54/54 new triples (809, 0:00:00.281093)
+- DEBUG -  [P-18] ----- extract atom individuals: 0/0 new triple (809, 0:00:00.020777)
+- INFO -  [P-18] ----- extract atomic properties: 13/13 new triples (822, 0:00:00.050778)
+- DEBUG -  [P-18] ----- extract atom values: 0/0 new triple (822, 0:00:00.007689)
+- INFO -  [P-18] ----- extract atom phenomena: 7/7 new triples (829, 0:00:00.049916)
+- INFO -  [P-18] ----- propagate atom relations: 14/36 new triples (843, 0:00:00.665307)
 - INFO -  [P-18] --- Sequence: classification sequence (1)
-- DEBUG -  [P-18] ----- classify modality phenomena: 0/0 new triple (843, 0:00:00.022280)
-- DEBUG -  [P-18] ----- reclassify argument property to class: 0/0 new triple (843, 0:00:00.025994)
+- DEBUG -  [P-18] ----- classify modality phenomena: 0/0 new triple (843, 0:00:00.021371)
+- DEBUG -  [P-18] ----- reclassify argument property to class: 0/0 new triple (843, 0:00:00.026290)
 - INFO -  [P-18] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-18] ----- analyze "polarity" phenomena (1): 0/0 new triple (843, 0:00:00.007954)
-- DEBUG -  [P-18] ----- analyze "polarity" phenomena (2): 0/0 new triple (843, 0:00:00.020225)
-- DEBUG -  [P-18] ----- analyze "polarity" phenomena (3): 0/0 new triple (843, 0:00:00.017560)
-- DEBUG -  [P-18] ----- analyze "polarity" phenomena (4): 0/0 new triple (843, 0:00:00.035787)
-- DEBUG -  [P-18] ----- analyze "polarity" phenomena (5): 0/0 new triple (843, 0:00:00.039449)
-- INFO -  [P-18] ----- analyze modifier phenomena (mod): 107/128 new triples (950, 0:00:00.446866)
-- DEBUG -  [P-18] ----- classify modality phenomena: 0/0 new triple (950, 0:00:00.023070)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (1): 0/0 new triple (843, 0:00:00.008746)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (2): 0/0 new triple (843, 0:00:00.016471)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (3): 0/0 new triple (843, 0:00:00.020095)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (4): 0/0 new triple (843, 0:00:00.039524)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (5): 0/0 new triple (843, 0:00:00.037834)
+- INFO -  [P-18] ----- analyze modifier phenomena (mod): 107/128 new triples (950, 0:00:00.547724)
+- DEBUG -  [P-18] ----- classify modality phenomena: 0/0 new triple (950, 0:00:00.022595)
 - INFO -  [P-18] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-18] ----- analyze "or" phenomena (1): 0/0 new triple (950, 0:00:00.017559)
-- DEBUG -  [P-18] ----- analyze "or" phenomena (2): 0/0 new triple (950, 0:00:00.011749)
-- DEBUG -  [P-18] ----- analyze "and" phenomena (1): 0/0 new triple (950, 0:00:00.011293)
-- DEBUG -  [P-18] ----- analyze "and" phenomena (2): 0/0 new triple (950, 0:00:00.010718)
+- DEBUG -  [P-18] ----- analyze "or" phenomena (1): 0/0 new triple (950, 0:00:00.012283)
+- DEBUG -  [P-18] ----- analyze "or" phenomena (2): 0/0 new triple (950, 0:00:00.013268)
+- DEBUG -  [P-18] ----- analyze "and" phenomena (1): 0/0 new triple (950, 0:00:00.013261)
+- DEBUG -  [P-18] ----- analyze "and" phenomena (2): 0/0 new triple (950, 0:00:00.013191)
 - INFO -  [P-18] --- Sequence: composite class extraction sequence
-- DEBUG -  [P-18] ----- extract composite classes (1): 0/0 new triple (950, 0:00:00.028663)
-- INFO -  [P-18] ----- extract composite classes (2): 53/58 new triples (1003, 0:00:00.214907)
+- DEBUG -  [P-18] ----- extract composite classes (1): 0/0 new triple (950, 0:00:00.031185)
+- INFO -  [P-18] ----- extract composite classes (2): 53/58 new triples (1003, 0:00:00.233422)
 - INFO -  [P-18] --- Sequence: classification sequence (2)
-- INFO -  [P-18] ----- classify class net as entity from core arguments: 10/39 new triples (1013, 0:00:00.103787)
-- DEBUG -  [P-18] ----- classify class net as entity from :part relation: 0/0 new triple (1013, 0:00:00.013413)
-- DEBUG -  [P-18] ----- classify class net as entity from degree arguments: 0/0 new triple (1013, 0:00:00.018226)
-- DEBUG -  [P-18] ----- Associate mother to class net from :domain relation: 0/0 new triple (1013, 0:00:00.008760)
-- DEBUG -  [P-18] ----- Propagate individuals to net with same base node: 0/10 new triple (1013, 0:00:00.094815)
-- DEBUG -  [P-18] ----- Propagate individuals to net with domain link: 0/0 new triple (1013, 0:00:00.009512)
+- INFO -  [P-18] ----- classify class net as entity from core arguments: 10/39 new triples (1013, 0:00:00.126385)
+- DEBUG -  [P-18] ----- classify class net as entity from :part relation: 0/0 new triple (1013, 0:00:00.013633)
+- DEBUG -  [P-18] ----- classify class net as entity from degree arguments: 0/0 new triple (1013, 0:00:00.022842)
+- DEBUG -  [P-18] ----- Associate mother to class net from :domain relation: 0/0 new triple (1013, 0:00:00.009967)
+- DEBUG -  [P-18] ----- Propagate individuals to net with same base node: 0/10 new triple (1013, 0:00:00.096534)
+- DEBUG -  [P-18] ----- Propagate individuals to net with domain link: 0/0 new triple (1013, 0:00:00.009414)
 - DEBUG -  [P-18] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-18] ----- step: Transduction
 - DEBUG -  [P-18] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1491,9 +1841,9 @@
 - DEBUG -  [P-18] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-18] -- Step 3: Generation
 - INFO -  [P-18] --- Sequence: OWL Generation Sequence
-- INFO -  [P-18] ----- generate OWL class: 62/65 new triples (1075, 0:00:00.726356)
-- INFO -  [P-18] ----- generate OWL property: 4/4 new triples (1079, 0:00:00.037289)
-- INFO -  [P-18] ----- generate OWL individual: 10/20 new triples (1089, 0:00:00.207232)
+- INFO -  [P-18] ----- generate OWL class: 62/65 new triples (1075, 0:00:00.669086)
+- INFO -  [P-18] ----- generate OWL property: 4/4 new triples (1079, 0:00:00.044265)
+- INFO -  [P-18] ----- generate OWL individual: 10/20 new triples (1089, 0:00:00.212846)
 - DEBUG -  [P-18] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-18] ----- step: Generation
 - DEBUG -  [P-18] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1526,25 +1876,25 @@
 - DEBUG -  [P-19] ----- Total rule number: 0
 - INFO -  [P-19] -- Step 1: Preprocessing
 - INFO -  [P-19] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-19] ----- fix AMR bug (1): 0/0 new triple (615, 0:00:00.015100)
+- DEBUG -  [P-19] ----- fix AMR bug (1): 0/0 new triple (615, 0:00:00.014366)
 - INFO -  [P-19] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- DEBUG -  [P-19] ----- reclassify AMR-LD concept (1): 0/0 new triple (615, 0:00:00.098698)
-- INFO -  [P-19] ----- reclassify AMR-LD concept (2): 4/4 new triples (619, 0:00:00.045654)
-- INFO -  [P-19] ----- reclassify AMR-LD concept (3): 24/24 new triples (643, 0:00:00.030458)
-- INFO -  [P-19] ----- reclassify AMR-LD concept (4): 32/32 new triples (675, 0:00:00.049516)
-- DEBUG -  [P-19] ----- reclassify AMR-LD concept (5): 0/0 new triple (675, 0:00:00.029657)
-- DEBUG -  [P-19] ----- reify roles as concept: 0/0 new triple (675, 0:00:00.034737)
-- INFO -  [P-19] ----- reclassify existing variable: 60/60 new triples (735, 0:00:00.017233)
-- DEBUG -  [P-19] ----- add new variable for reified concept: 0/0 new triple (735, 0:00:00.047588)
-- INFO -  [P-19] ----- add AMR leaf for reclassified concept: 45/45 new triples (780, 0:00:00.022592)
-- DEBUG -  [P-19] ----- add AMR leaf for reified concept: 0/0 new triple (780, 0:00:00.010353)
-- INFO -  [P-19] ----- add AMR edge for core relation: 45/45 new triples (825, 0:00:00.096037)
-- DEBUG -  [P-19] ----- add AMR edge for reified concept: 0/0 new triple (825, 0:00:00.023576)
-- DEBUG -  [P-19] ----- add AMR edge for name relation: 0/0 new triple (825, 0:00:00.020633)
-- DEBUG -  [P-19] ----- add AMR edge for quant relation: 0/0 new triple (825, 0:00:00.020252)
-- DEBUG -  [P-19] ----- add AMR edge for polarity relation: 0/0 new triple (825, 0:00:00.025935)
-- INFO -  [P-19] ----- update AMR edge role 1: 12/12 new triples (837, 0:00:00.068790)
-- INFO -  [P-19] ----- add AMR root: 5/5 new triples (842, 0:00:00.011378)
+- DEBUG -  [P-19] ----- reclassify AMR-LD concept (1): 0/0 new triple (615, 0:00:00.097268)
+- INFO -  [P-19] ----- reclassify AMR-LD concept (2): 4/4 new triples (619, 0:00:00.049453)
+- INFO -  [P-19] ----- reclassify AMR-LD concept (3): 24/24 new triples (643, 0:00:00.034255)
+- INFO -  [P-19] ----- reclassify AMR-LD concept (4): 32/32 new triples (675, 0:00:00.049395)
+- DEBUG -  [P-19] ----- reclassify AMR-LD concept (5): 0/0 new triple (675, 0:00:00.031574)
+- DEBUG -  [P-19] ----- reify roles as concept: 0/0 new triple (675, 0:00:00.036754)
+- INFO -  [P-19] ----- reclassify existing variable: 60/60 new triples (735, 0:00:00.018111)
+- DEBUG -  [P-19] ----- add new variable for reified concept: 0/0 new triple (735, 0:00:00.049890)
+- INFO -  [P-19] ----- add AMR leaf for reclassified concept: 45/45 new triples (780, 0:00:00.026060)
+- DEBUG -  [P-19] ----- add AMR leaf for reified concept: 0/0 new triple (780, 0:00:00.010322)
+- INFO -  [P-19] ----- add AMR edge for core relation: 45/45 new triples (825, 0:00:00.099813)
+- DEBUG -  [P-19] ----- add AMR edge for reified concept: 0/0 new triple (825, 0:00:00.021167)
+- DEBUG -  [P-19] ----- add AMR edge for name relation: 0/0 new triple (825, 0:00:00.021313)
+- DEBUG -  [P-19] ----- add AMR edge for quant relation: 0/0 new triple (825, 0:00:00.094450)
+- DEBUG -  [P-19] ----- add AMR edge for polarity relation: 0/0 new triple (825, 0:00:00.034710)
+- INFO -  [P-19] ----- update AMR edge role 1: 12/12 new triples (837, 0:00:00.070961)
+- INFO -  [P-19] ----- add AMR root: 5/5 new triples (842, 0:00:00.010149)
 - DEBUG -  [P-19] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-19] ----- step: Preprocessing
 - DEBUG -  [P-19] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1552,38 +1902,38 @@
 - DEBUG -  [P-19] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-19] -- Step 2: Transduction
 - INFO -  [P-19] --- Sequence: atomic extraction sequence
-- INFO -  [P-19] ----- extract atom classes: 48/48 new triples (890, 0:00:00.228736)
-- DEBUG -  [P-19] ----- extract atom individuals: 0/0 new triple (890, 0:00:00.016630)
-- INFO -  [P-19] ----- extract atomic properties: 88/88 new triples (978, 0:00:00.240462)
-- DEBUG -  [P-19] ----- extract atom values: 0/0 new triple (978, 0:00:00.006500)
-- DEBUG -  [P-19] ----- extract atom phenomena: 0/0 new triple (978, 0:00:00.009572)
-- INFO -  [P-19] ----- propagate atom relations: 16/48 new triples (994, 0:00:01.002369)
+- INFO -  [P-19] ----- extract atom classes: 48/48 new triples (890, 0:00:00.238354)
+- DEBUG -  [P-19] ----- extract atom individuals: 0/0 new triple (890, 0:00:00.016085)
+- INFO -  [P-19] ----- extract atomic properties: 88/88 new triples (978, 0:00:00.262411)
+- DEBUG -  [P-19] ----- extract atom values: 0/0 new triple (978, 0:00:00.005959)
+- DEBUG -  [P-19] ----- extract atom phenomena: 0/0 new triple (978, 0:00:00.008582)
+- INFO -  [P-19] ----- propagate atom relations: 16/48 new triples (994, 0:00:00.964666)
 - INFO -  [P-19] --- Sequence: classification sequence (1)
-- DEBUG -  [P-19] ----- classify modality phenomena: 0/0 new triple (994, 0:00:00.027572)
-- INFO -  [P-19] ----- reclassify argument property to class: 10/12 new triples (1004, 0:00:00.066731)
+- DEBUG -  [P-19] ----- classify modality phenomena: 0/0 new triple (994, 0:00:00.024786)
+- INFO -  [P-19] ----- reclassify argument property to class: 10/12 new triples (1004, 0:00:00.072189)
 - INFO -  [P-19] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-19] ----- analyze "polarity" phenomena (1): 0/0 new triple (1004, 0:00:00.009902)
-- DEBUG -  [P-19] ----- analyze "polarity" phenomena (2): 0/0 new triple (1004, 0:00:00.020646)
-- DEBUG -  [P-19] ----- analyze "polarity" phenomena (3): 0/0 new triple (1004, 0:00:00.016263)
-- DEBUG -  [P-19] ----- analyze "polarity" phenomena (4): 0/0 new triple (1004, 0:00:00.036643)
-- DEBUG -  [P-19] ----- analyze "polarity" phenomena (5): 0/0 new triple (1004, 0:00:00.036499)
-- INFO -  [P-19] ----- analyze modifier phenomena (mod): 22/26 new triples (1026, 0:00:00.088509)
-- DEBUG -  [P-19] ----- classify modality phenomena: 0/0 new triple (1026, 0:00:00.026255)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (1): 0/0 new triple (1004, 0:00:00.008258)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (2): 0/0 new triple (1004, 0:00:00.017303)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (3): 0/0 new triple (1004, 0:00:00.017963)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (4): 0/0 new triple (1004, 0:00:00.039985)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (5): 0/0 new triple (1004, 0:00:00.038534)
+- INFO -  [P-19] ----- analyze modifier phenomena (mod): 22/26 new triples (1026, 0:00:00.096634)
+- DEBUG -  [P-19] ----- classify modality phenomena: 0/0 new triple (1026, 0:00:00.021031)
 - INFO -  [P-19] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-19] ----- analyze "or" phenomena (1): 0/0 new triple (1026, 0:00:00.012935)
-- DEBUG -  [P-19] ----- analyze "or" phenomena (2): 0/0 new triple (1026, 0:00:00.011089)
-- DEBUG -  [P-19] ----- analyze "and" phenomena (1): 0/0 new triple (1026, 0:00:00.010496)
-- DEBUG -  [P-19] ----- analyze "and" phenomena (2): 0/0 new triple (1026, 0:00:00.011518)
+- DEBUG -  [P-19] ----- analyze "or" phenomena (1): 0/0 new triple (1026, 0:00:00.012363)
+- DEBUG -  [P-19] ----- analyze "or" phenomena (2): 0/0 new triple (1026, 0:00:00.012505)
+- DEBUG -  [P-19] ----- analyze "and" phenomena (1): 0/0 new triple (1026, 0:00:00.011884)
+- DEBUG -  [P-19] ----- analyze "and" phenomena (2): 0/0 new triple (1026, 0:00:00.010994)
 - INFO -  [P-19] --- Sequence: composite class extraction sequence
-- INFO -  [P-19] ----- extract composite classes (1): 25/27 new triples (1051, 0:00:00.127921)
-- INFO -  [P-19] ----- extract composite classes (2): 45/48 new triples (1096, 0:00:00.221460)
+- INFO -  [P-19] ----- extract composite classes (1): 25/27 new triples (1051, 0:00:00.129402)
+- INFO -  [P-19] ----- extract composite classes (2): 45/48 new triples (1096, 0:00:00.226255)
 - INFO -  [P-19] --- Sequence: classification sequence (2)
-- INFO -  [P-19] ----- classify class net as entity from core arguments: 14/101 new triples (1110, 0:00:00.231062)
-- DEBUG -  [P-19] ----- classify class net as entity from :part relation: 0/0 new triple (1110, 0:00:00.010044)
-- DEBUG -  [P-19] ----- classify class net as entity from degree arguments: 0/0 new triple (1110, 0:00:00.017343)
-- DEBUG -  [P-19] ----- Associate mother to class net from :domain relation: 0/0 new triple (1110, 0:00:00.008851)
-- DEBUG -  [P-19] ----- Propagate individuals to net with same base node: 0/2 new triple (1110, 0:00:00.032349)
-- DEBUG -  [P-19] ----- Propagate individuals to net with domain link: 0/0 new triple (1110, 0:00:00.008730)
+- INFO -  [P-19] ----- classify class net as entity from core arguments: 14/101 new triples (1110, 0:00:00.241611)
+- DEBUG -  [P-19] ----- classify class net as entity from :part relation: 0/0 new triple (1110, 0:00:00.009215)
+- DEBUG -  [P-19] ----- classify class net as entity from degree arguments: 0/0 new triple (1110, 0:00:00.017797)
+- DEBUG -  [P-19] ----- Associate mother to class net from :domain relation: 0/0 new triple (1110, 0:00:00.008703)
+- DEBUG -  [P-19] ----- Propagate individuals to net with same base node: 0/2 new triple (1110, 0:00:00.031224)
+- DEBUG -  [P-19] ----- Propagate individuals to net with domain link: 0/0 new triple (1110, 0:00:00.010794)
 - DEBUG -  [P-19] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-19] ----- step: Transduction
 - DEBUG -  [P-19] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1591,9 +1941,9 @@
 - DEBUG -  [P-19] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-19] -- Step 3: Generation
 - INFO -  [P-19] --- Sequence: OWL Generation Sequence
-- INFO -  [P-19] ----- generate OWL class: 60/60 new triples (1170, 0:00:00.570876)
-- INFO -  [P-19] ----- generate OWL property: 24/24 new triples (1194, 0:00:00.202578)
-- INFO -  [P-19] ----- generate OWL individual: 2/4 new triples (1196, 0:00:00.046356)
+- INFO -  [P-19] ----- generate OWL class: 60/60 new triples (1170, 0:00:00.571981)
+- INFO -  [P-19] ----- generate OWL property: 24/24 new triples (1194, 0:00:00.200331)
+- INFO -  [P-19] ----- generate OWL individual: 2/4 new triples (1196, 0:00:00.045500)
 - DEBUG -  [P-19] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-19] ----- step: Generation
 - DEBUG -  [P-19] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1626,25 +1976,25 @@
 - DEBUG -  [P-20] ----- Total rule number: 0
 - INFO -  [P-20] -- Step 1: Preprocessing
 - INFO -  [P-20] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-20] ----- fix AMR bug (1): 0/0 new triple (609, 0:00:00.016031)
+- DEBUG -  [P-20] ----- fix AMR bug (1): 0/0 new triple (609, 0:00:00.017257)
 - INFO -  [P-20] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- DEBUG -  [P-20] ----- reclassify AMR-LD concept (1): 0/0 new triple (609, 0:00:00.090965)
-- INFO -  [P-20] ----- reclassify AMR-LD concept (2): 4/4 new triples (613, 0:00:00.042185)
-- INFO -  [P-20] ----- reclassify AMR-LD concept (3): 20/20 new triples (633, 0:00:00.107104)
-- INFO -  [P-20] ----- reclassify AMR-LD concept (4): 32/32 new triples (665, 0:00:00.055342)
-- DEBUG -  [P-20] ----- reclassify AMR-LD concept (5): 0/0 new triple (665, 0:00:00.027055)
-- INFO -  [P-20] ----- reify roles as concept: 5/5 new triples (670, 0:00:00.036248)
-- INFO -  [P-20] ----- reclassify existing variable: 60/60 new triples (730, 0:00:00.020065)
-- INFO -  [P-20] ----- add new variable for reified concept: 4/4 new triples (734, 0:00:00.043814)
-- INFO -  [P-20] ----- add AMR leaf for reclassified concept: 45/45 new triples (779, 0:00:00.024283)
-- INFO -  [P-20] ----- add AMR leaf for reified concept: 4/4 new triples (783, 0:00:00.017216)
-- INFO -  [P-20] ----- add AMR edge for core relation: 39/39 new triples (822, 0:00:00.099736)
-- INFO -  [P-20] ----- add AMR edge for reified concept: 6/6 new triples (828, 0:00:00.056225)
-- DEBUG -  [P-20] ----- add AMR edge for name relation: 0/0 new triple (828, 0:00:00.020381)
-- DEBUG -  [P-20] ----- add AMR edge for quant relation: 0/0 new triple (828, 0:00:00.023273)
-- DEBUG -  [P-20] ----- add AMR edge for polarity relation: 0/0 new triple (828, 0:00:00.029870)
-- INFO -  [P-20] ----- update AMR edge role 1: 14/14 new triples (842, 0:00:00.070030)
-- INFO -  [P-20] ----- add AMR root: 5/5 new triples (847, 0:00:00.009572)
+- DEBUG -  [P-20] ----- reclassify AMR-LD concept (1): 0/0 new triple (609, 0:00:00.096067)
+- INFO -  [P-20] ----- reclassify AMR-LD concept (2): 4/4 new triples (613, 0:00:00.046074)
+- INFO -  [P-20] ----- reclassify AMR-LD concept (3): 20/20 new triples (633, 0:00:00.035857)
+- INFO -  [P-20] ----- reclassify AMR-LD concept (4): 32/32 new triples (665, 0:00:00.047307)
+- DEBUG -  [P-20] ----- reclassify AMR-LD concept (5): 0/0 new triple (665, 0:00:00.027109)
+- INFO -  [P-20] ----- reify roles as concept: 5/5 new triples (670, 0:00:00.037662)
+- INFO -  [P-20] ----- reclassify existing variable: 60/60 new triples (730, 0:00:00.019349)
+- INFO -  [P-20] ----- add new variable for reified concept: 4/4 new triples (734, 0:00:00.044060)
+- INFO -  [P-20] ----- add AMR leaf for reclassified concept: 45/45 new triples (779, 0:00:00.026882)
+- INFO -  [P-20] ----- add AMR leaf for reified concept: 4/4 new triples (783, 0:00:00.011613)
+- INFO -  [P-20] ----- add AMR edge for core relation: 39/39 new triples (822, 0:00:00.095115)
+- INFO -  [P-20] ----- add AMR edge for reified concept: 6/6 new triples (828, 0:00:00.056196)
+- DEBUG -  [P-20] ----- add AMR edge for name relation: 0/0 new triple (828, 0:00:00.023749)
+- DEBUG -  [P-20] ----- add AMR edge for quant relation: 0/0 new triple (828, 0:00:00.021875)
+- DEBUG -  [P-20] ----- add AMR edge for polarity relation: 0/0 new triple (828, 0:00:00.027878)
+- INFO -  [P-20] ----- update AMR edge role 1: 14/14 new triples (842, 0:00:00.069846)
+- INFO -  [P-20] ----- add AMR root: 5/5 new triples (847, 0:00:00.009587)
 - DEBUG -  [P-20] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-20] ----- step: Preprocessing
 - DEBUG -  [P-20] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1652,38 +2002,38 @@
 - DEBUG -  [P-20] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-20] -- Step 2: Transduction
 - INFO -  [P-20] --- Sequence: atomic extraction sequence
-- INFO -  [P-20] ----- extract atom classes: 48/48 new triples (895, 0:00:00.238085)
-- DEBUG -  [P-20] ----- extract atom individuals: 0/0 new triple (895, 0:00:00.016103)
-- INFO -  [P-20] ----- extract atomic properties: 100/100 new triples (995, 0:00:00.281930)
-- DEBUG -  [P-20] ----- extract atom values: 0/0 new triple (995, 0:00:00.006097)
-- DEBUG -  [P-20] ----- extract atom phenomena: 0/0 new triple (995, 0:00:00.009092)
-- INFO -  [P-20] ----- propagate atom relations: 20/56 new triples (1015, 0:00:00.977082)
+- INFO -  [P-20] ----- extract atom classes: 48/48 new triples (895, 0:00:00.241986)
+- DEBUG -  [P-20] ----- extract atom individuals: 0/0 new triple (895, 0:00:00.017740)
+- INFO -  [P-20] ----- extract atomic properties: 100/100 new triples (995, 0:00:00.292954)
+- DEBUG -  [P-20] ----- extract atom values: 0/0 new triple (995, 0:00:00.007680)
+- DEBUG -  [P-20] ----- extract atom phenomena: 0/0 new triple (995, 0:00:00.009606)
+- INFO -  [P-20] ----- propagate atom relations: 20/56 new triples (1015, 0:00:01.025567)
 - INFO -  [P-20] --- Sequence: classification sequence (1)
-- DEBUG -  [P-20] ----- classify modality phenomena: 0/0 new triple (1015, 0:00:00.023890)
-- INFO -  [P-20] ----- reclassify argument property to class: 31/52 new triples (1046, 0:00:00.196399)
+- DEBUG -  [P-20] ----- classify modality phenomena: 0/0 new triple (1015, 0:00:00.025535)
+- INFO -  [P-20] ----- reclassify argument property to class: 31/52 new triples (1046, 0:00:00.203955)
 - INFO -  [P-20] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-20] ----- analyze "polarity" phenomena (1): 0/0 new triple (1046, 0:00:00.008123)
-- DEBUG -  [P-20] ----- analyze "polarity" phenomena (2): 0/0 new triple (1046, 0:00:00.016800)
-- DEBUG -  [P-20] ----- analyze "polarity" phenomena (3): 0/0 new triple (1046, 0:00:00.015789)
-- DEBUG -  [P-20] ----- analyze "polarity" phenomena (4): 0/0 new triple (1046, 0:00:00.034434)
-- DEBUG -  [P-20] ----- analyze "polarity" phenomena (5): 0/0 new triple (1046, 0:00:00.039065)
-- INFO -  [P-20] ----- analyze modifier phenomena (mod): 43/50 new triples (1089, 0:00:00.178892)
-- DEBUG -  [P-20] ----- classify modality phenomena: 0/0 new triple (1089, 0:00:00.019767)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (1): 0/0 new triple (1046, 0:00:00.007644)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (2): 0/0 new triple (1046, 0:00:00.084391)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (3): 0/0 new triple (1046, 0:00:00.027332)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (4): 0/0 new triple (1046, 0:00:00.041511)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (5): 0/0 new triple (1046, 0:00:00.039765)
+- INFO -  [P-20] ----- analyze modifier phenomena (mod): 43/50 new triples (1089, 0:00:00.175560)
+- DEBUG -  [P-20] ----- classify modality phenomena: 0/0 new triple (1089, 0:00:00.021081)
 - INFO -  [P-20] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-20] ----- analyze "or" phenomena (1): 0/0 new triple (1089, 0:00:00.012223)
-- DEBUG -  [P-20] ----- analyze "or" phenomena (2): 0/0 new triple (1089, 0:00:00.011781)
-- DEBUG -  [P-20] ----- analyze "and" phenomena (1): 0/0 new triple (1089, 0:00:00.011185)
-- DEBUG -  [P-20] ----- analyze "and" phenomena (2): 0/0 new triple (1089, 0:00:00.010595)
+- DEBUG -  [P-20] ----- analyze "or" phenomena (1): 0/0 new triple (1089, 0:00:00.012348)
+- DEBUG -  [P-20] ----- analyze "or" phenomena (2): 0/0 new triple (1089, 0:00:00.012130)
+- DEBUG -  [P-20] ----- analyze "and" phenomena (1): 0/0 new triple (1089, 0:00:00.010736)
+- DEBUG -  [P-20] ----- analyze "and" phenomena (2): 0/0 new triple (1089, 0:00:00.010270)
 - INFO -  [P-20] --- Sequence: composite class extraction sequence
-- INFO -  [P-20] ----- extract composite classes (1): 23/24 new triples (1112, 0:00:00.132854)
-- INFO -  [P-20] ----- extract composite classes (2): 49/56 new triples (1161, 0:00:00.284719)
+- INFO -  [P-20] ----- extract composite classes (1): 23/24 new triples (1112, 0:00:00.137013)
+- INFO -  [P-20] ----- extract composite classes (2): 49/56 new triples (1161, 0:00:00.244888)
 - INFO -  [P-20] --- Sequence: classification sequence (2)
-- INFO -  [P-20] ----- classify class net as entity from core arguments: 18/174 new triples (1179, 0:00:00.320875)
-- DEBUG -  [P-20] ----- classify class net as entity from :part relation: 0/0 new triple (1179, 0:00:00.010140)
-- DEBUG -  [P-20] ----- classify class net as entity from degree arguments: 0/0 new triple (1179, 0:00:00.017903)
-- INFO -  [P-20] ----- Associate mother to class net from :domain relation: 1/16 new triple (1180, 0:00:00.041861)
-- DEBUG -  [P-20] ----- Propagate individuals to net with same base node: 0/4 new triple (1180, 0:00:00.051368)
-- DEBUG -  [P-20] ----- Propagate individuals to net with domain link: 0/0 new triple (1180, 0:00:00.009443)
+- INFO -  [P-20] ----- classify class net as entity from core arguments: 18/174 new triples (1179, 0:00:00.345305)
+- DEBUG -  [P-20] ----- classify class net as entity from :part relation: 0/0 new triple (1179, 0:00:00.009596)
+- DEBUG -  [P-20] ----- classify class net as entity from degree arguments: 0/0 new triple (1179, 0:00:00.021679)
+- INFO -  [P-20] ----- Associate mother to class net from :domain relation: 1/16 new triple (1180, 0:00:00.046034)
+- DEBUG -  [P-20] ----- Propagate individuals to net with same base node: 0/4 new triple (1180, 0:00:00.048319)
+- DEBUG -  [P-20] ----- Propagate individuals to net with domain link: 0/0 new triple (1180, 0:00:00.009560)
 - DEBUG -  [P-20] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-20] ----- step: Transduction
 - DEBUG -  [P-20] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1691,9 +2041,9 @@
 - DEBUG -  [P-20] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-20] -- Step 3: Generation
 - INFO -  [P-20] --- Sequence: OWL Generation Sequence
-- INFO -  [P-20] ----- generate OWL class: 67/71 new triples (1247, 0:00:00.660005)
-- INFO -  [P-20] ----- generate OWL property: 20/20 new triples (1267, 0:00:00.176228)
-- INFO -  [P-20] ----- generate OWL individual: 4/8 new triples (1271, 0:00:00.088594)
+- INFO -  [P-20] ----- generate OWL class: 67/71 new triples (1247, 0:00:00.676857)
+- INFO -  [P-20] ----- generate OWL property: 20/20 new triples (1267, 0:00:00.187969)
+- INFO -  [P-20] ----- generate OWL individual: 4/8 new triples (1271, 0:00:00.091030)
 - DEBUG -  [P-20] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-20] ----- step: Generation
 - DEBUG -  [P-20] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1726,33 +2076,83 @@
 - DEBUG -  [P-21] ----- Total rule number: 0
 - INFO -  [P-21] -- Step 1: Preprocessing
 - INFO -  [P-21] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-21] ----- fix AMR bug (1): 0/0 new triple (613, 0:00:00.016793)
+- DEBUG -  [P-21] ----- fix AMR bug (1): 0/0 new triple (613, 0:00:00.017106)
 - INFO -  [P-21] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-21] ----- reclassify AMR-LD concept (1): 10/10 new triples (623, 0:00:00.097257)
-- DEBUG -  [P-21] ----- reclassify AMR-LD concept (2): 0/0 new triple (623, 0:00:00.050742)
-- INFO -  [P-21] ----- reclassify AMR-LD concept (3): 20/20 new triples (643, 0:00:00.030546)
-- INFO -  [P-21] ----- reclassify AMR-LD concept (4): 28/28 new triples (671, 0:00:00.047823)
-- DEBUG -  [P-21] ----- reclassify AMR-LD concept (5): 0/0 new triple (671, 0:00:00.031106)
-- DEBUG -  [P-21] ----- reify roles as concept: 0/0 new triple (671, 0:00:00.035768)
-- INFO -  [P-21] ----- reclassify existing variable: 57/57 new triples (728, 0:00:00.017304)
-- DEBUG -  [P-21] ----- add new variable for reified concept: 0/0 new triple (728, 0:00:00.049716)
-- INFO -  [P-21] ----- add AMR leaf for reclassified concept: 42/42 new triples (770, 0:00:00.020448)
-- DEBUG -  [P-21] ----- add AMR leaf for reified concept: 0/0 new triple (770, 0:00:00.010847)
-- INFO -  [P-21] ----- add AMR edge for core relation: 42/42 new triples (812, 0:00:00.094777)
-- DEBUG -  [P-21] ----- add AMR edge for reified concept: 0/0 new triple (812, 0:00:00.020750)
-- INFO -  [P-21] ----- add AMR edge for name relation: 5/5 new triples (817, 0:00:00.022246)
-- ERROR -  [P-21] *** *** **** Assertion Error *** *** *** 
- Object None must be an rdflib term
-- ERROR -  [P-21] *** Error while processing extraction (apply_step) ***
-- DEBUG -  [P-21] ----- step_name = Preprocessing
-- DEBUG -  [P-21] ----- len(step_sequence_def) = 2
-- DEBUG -  [P-21] ----- last sequence def = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]
-- ERROR -  [P-21]  *** Error while processing extraction (apply) ***
-- DEBUG -  [P-21] ----- config.extraction_scheme = owl_amr_scheme_1
-- DEBUG -  [P-21] ----- rule_dir = amr_master_rule/
-- DEBUG -  [P-21] ----- scheme = {'Preprocessing': [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]], 'Transduction': [['atomic extraction sequence', <function extract_atom_class at 0x7f64b5fea980>, <function extract_atom_individual at 0x7f64b5feafc0>, <function extract_atom_property at 0x7f64b5feb7e0>, <function extract_atom_value at 0x7f64b5febe20>, <function extract_atom_phenomena at 0x7f64b5fe0400>, <function propagate_atom_relation at 0x7f64b5fe0860>], ['classification sequence (1)', <function classify_modality_phenomena at 0x7f64b5fe13a0>, <function reclassify_argument_property_to_class at 0x7f64b5fe16c0>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f64b5fe2a20>, <function analyze_phenomena_polarity_2 at 0x7f64b5fe2d40>, <function analyze_phenomena_polarity_3 at 0x7f64b5fe3060>, <function analyze_phenomena_polarity_4 at 0x7f64b5fe3380>, <function analyze_phenomena_polarity_5 at 0x7f64b5fe36a0>, <function analyze_phenomena_mod_1 at 0x7f64b5fe3d80>, <function classify_modality_phenomena at 0x7f64b5fe13a0>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f64b5f48540>, <function analyze_phenomena_or_2 at 0x7f64b5f48cc0>, <function analyze_phenomena_and_1 at 0x7f64b5f49260>, <function analyze_phenomena_and_2 at 0x7f64b5f49760>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f64b5fe0cc0>, <function extract_composite_class_2 at 0x7f64b5fe1120>], ['classification sequence (2)', <function classify_entity_from_core_arguments at 0x7f64b5fe1940>, <function classify_entity_from_part_relation at 0x7f64b5fe1c60>, <function classify_entity_from_degree_arguments at 0x7f64b5fe1ee0>, <function classify_mother_from_domain_relation at 0x7f64b5fe2160>, <function propagate_individual_1 at 0x7f64b5fe23e0>, <function propagate_individual_2 at 0x7f64b5fe2480>]], 'Generation': [['OWL Generation Sequence', <function generate_owl_class at 0x7f64b5f4b060>, <function generate_owl_property at 0x7f64b5f4a160>, <function generate_owl_individual at 0x7f64b5f4b880>]]}
-- DEBUG -  [P-21] ----- step = Preprocessing, [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]]
-- INFO -  [P-21] Failure
+- INFO -  [P-21] ----- reclassify AMR-LD concept (1): 10/10 new triples (623, 0:00:00.092767)
+- DEBUG -  [P-21] ----- reclassify AMR-LD concept (2): 0/0 new triple (623, 0:00:00.053226)
+- INFO -  [P-21] ----- reclassify AMR-LD concept (3): 20/20 new triples (643, 0:00:00.030902)
+- INFO -  [P-21] ----- reclassify AMR-LD concept (4): 28/28 new triples (671, 0:00:00.049325)
+- DEBUG -  [P-21] ----- reclassify AMR-LD concept (5): 0/0 new triple (671, 0:00:00.032270)
+- DEBUG -  [P-21] ----- reify roles as concept: 0/0 new triple (671, 0:00:00.036998)
+- INFO -  [P-21] ----- reclassify existing variable: 57/57 new triples (728, 0:00:00.018510)
+- DEBUG -  [P-21] ----- add new variable for reified concept: 0/0 new triple (728, 0:00:00.047569)
+- INFO -  [P-21] ----- add AMR leaf for reclassified concept: 42/42 new triples (770, 0:00:00.021625)
+- DEBUG -  [P-21] ----- add AMR leaf for reified concept: 0/0 new triple (770, 0:00:00.011410)
+- INFO -  [P-21] ----- add AMR edge for core relation: 42/42 new triples (812, 0:00:00.177396)
+- DEBUG -  [P-21] ----- add AMR edge for reified concept: 0/0 new triple (812, 0:00:00.023459)
+- INFO -  [P-21] ----- add AMR edge for name relation: 5/5 new triples (817, 0:00:00.018591)
+- DEBUG -  [P-21] ----- add AMR edge for quant relation: 0/0 new triple (817, 0:00:00.023196)
+- DEBUG -  [P-21] ----- add AMR edge for polarity relation: 0/0 new triple (817, 0:00:00.027416)
+- INFO -  [P-21] ----- update AMR edge role 1: 14/14 new triples (831, 0:00:00.070300)
+- INFO -  [P-21] ----- add AMR root: 5/5 new triples (836, 0:00:00.012004)
+- DEBUG -  [P-21] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-21] ----- step: Preprocessing
+- DEBUG -  [P-21] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-21] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-21] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-21] -- Step 2: Transduction
+- INFO -  [P-21] --- Sequence: atomic extraction sequence
+- INFO -  [P-21] ----- extract atom classes: 42/42 new triples (878, 0:00:00.204460)
+- INFO -  [P-21] ----- extract atom individuals: 8/8 new triples (886, 0:00:00.046954)
+- INFO -  [P-21] ----- extract atomic properties: 61/61 new triples (947, 0:00:00.181073)
+- INFO -  [P-21] ----- extract atom values: 5/5 new triples (952, 0:00:00.030508)
+- INFO -  [P-21] ----- extract atom phenomena: 14/14 new triples (966, 0:00:00.065275)
+- INFO -  [P-21] ----- propagate atom relations: 26/82 new triples (992, 0:00:01.062912)
+- INFO -  [P-21] --- Sequence: classification sequence (1)
+- INFO -  [P-21] ----- classify modality phenomena: 1/3 new triple (993, 0:00:00.042418)
+- INFO -  [P-21] ----- reclassify argument property to class: 12/16 new triples (1005, 0:00:00.068091)
+- INFO -  [P-21] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (1): 0/0 new triple (1005, 0:00:00.008086)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (2): 0/0 new triple (1005, 0:00:00.018771)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (3): 0/0 new triple (1005, 0:00:00.018446)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (4): 0/0 new triple (1005, 0:00:00.036626)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (5): 0/0 new triple (1005, 0:00:00.036863)
+- INFO -  [P-21] ----- analyze modifier phenomena (mod): 22/26 new triples (1027, 0:00:00.094860)
+- DEBUG -  [P-21] ----- classify modality phenomena: 0/3 new triple (1027, 0:00:00.041865)
+- INFO -  [P-21] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-21] ----- analyze "or" phenomena (1): 0/0 new triple (1027, 0:00:00.012502)
+- DEBUG -  [P-21] ----- analyze "or" phenomena (2): 0/0 new triple (1027, 0:00:00.011557)
+- DEBUG -  [P-21] ----- analyze "and" phenomena (1): 0/0 new triple (1027, 0:00:00.011067)
+- DEBUG -  [P-21] ----- analyze "and" phenomena (2): 0/0 new triple (1027, 0:00:00.013046)
+- INFO -  [P-21] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-21] ----- extract composite classes (1): 0/0 new triple (1027, 0:00:00.033367)
+- DEBUG -  [P-21] ----- extract composite classes (2): 0/0 new triple (1027, 0:00:00.030537)
+- INFO -  [P-21] --- Sequence: classification sequence (2)
+- INFO -  [P-21] ----- classify class net as entity from core arguments: 10/106 new triples (1037, 0:00:00.198419)
+- DEBUG -  [P-21] ----- classify class net as entity from :part relation: 0/0 new triple (1037, 0:00:00.009331)
+- DEBUG -  [P-21] ----- classify class net as entity from degree arguments: 0/0 new triple (1037, 0:00:00.018075)
+- DEBUG -  [P-21] ----- Associate mother to class net from :domain relation: 0/0 new triple (1037, 0:00:00.009486)
+- DEBUG -  [P-21] ----- Propagate individuals to net with same base node: 0/28 new triple (1037, 0:00:00.078766)
+- DEBUG -  [P-21] ----- Propagate individuals to net with domain link: 0/0 new triple (1037, 0:00:00.008174)
+- DEBUG -  [P-21] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-21] ----- step: Transduction
+- DEBUG -  [P-21] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-21] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-21] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-21] -- Step 3: Generation
+- INFO -  [P-21] --- Sequence: OWL Generation Sequence
+- INFO -  [P-21] ----- generate OWL class: 31/31 new triples (1068, 0:00:00.273449)
+- INFO -  [P-21] ----- generate OWL property: 16/16 new triples (1084, 0:00:00.141187)
+- INFO -  [P-21] ----- generate OWL individual: 6/8 new triples (1090, 0:00:00.091555)
+- DEBUG -  [P-21] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-21] ----- step: Generation
+- DEBUG -  [P-21] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-21] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-21] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- DEBUG -  [P-21] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-21] ----- Number of factoids: 55
+- DEBUG -  [P-21] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-21] Success (55 extracted triple(s))
 - INFO - 
  [P-22]     *** extraction from sentence 22 *** 
 - INFO -  [P-22] -- Work Structure Preparation
@@ -1776,33 +2176,83 @@
 - DEBUG -  [P-22] ----- Total rule number: 0
 - INFO -  [P-22] -- Step 1: Preprocessing
 - INFO -  [P-22] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-22] ----- fix AMR bug (1): 0/0 new triple (628, 0:00:00.019619)
+- DEBUG -  [P-22] ----- fix AMR bug (1): 0/0 new triple (628, 0:00:00.018812)
 - INFO -  [P-22] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-22] ----- reclassify AMR-LD concept (1): 5/5 new triples (633, 0:00:00.106060)
-- INFO -  [P-22] ----- reclassify AMR-LD concept (2): 8/8 new triples (641, 0:00:00.047595)
-- INFO -  [P-22] ----- reclassify AMR-LD concept (3): 16/16 new triples (657, 0:00:00.033522)
-- INFO -  [P-22] ----- reclassify AMR-LD concept (4): 36/36 new triples (693, 0:00:00.054534)
-- INFO -  [P-22] ----- reclassify AMR-LD concept (5): 4/4 new triples (697, 0:00:00.029535)
-- INFO -  [P-22] ----- reify roles as concept: 5/5 new triples (702, 0:00:00.039728)
-- INFO -  [P-22] ----- reclassify existing variable: 75/75 new triples (777, 0:00:00.019020)
-- INFO -  [P-22] ----- add new variable for reified concept: 4/4 new triples (781, 0:00:00.049753)
-- INFO -  [P-22] ----- add AMR leaf for reclassified concept: 54/54 new triples (835, 0:00:00.030911)
-- INFO -  [P-22] ----- add AMR leaf for reified concept: 4/4 new triples (839, 0:00:00.011670)
-- INFO -  [P-22] ----- add AMR edge for core relation: 48/48 new triples (887, 0:00:00.114170)
-- INFO -  [P-22] ----- add AMR edge for reified concept: 6/6 new triples (893, 0:00:00.079359)
-- INFO -  [P-22] ----- add AMR edge for name relation: 15/15 new triples (908, 0:00:00.022450)
-- ERROR -  [P-22] *** *** **** Assertion Error *** *** *** 
- Object None must be an rdflib term
-- ERROR -  [P-22] *** Error while processing extraction (apply_step) ***
-- DEBUG -  [P-22] ----- step_name = Preprocessing
-- DEBUG -  [P-22] ----- len(step_sequence_def) = 2
-- DEBUG -  [P-22] ----- last sequence def = ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]
-- ERROR -  [P-22]  *** Error while processing extraction (apply) ***
-- DEBUG -  [P-22] ----- config.extraction_scheme = owl_amr_scheme_1
-- DEBUG -  [P-22] ----- rule_dir = amr_master_rule/
-- DEBUG -  [P-22] ----- scheme = {'Preprocessing': [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]], 'Transduction': [['atomic extraction sequence', <function extract_atom_class at 0x7f64b5fea980>, <function extract_atom_individual at 0x7f64b5feafc0>, <function extract_atom_property at 0x7f64b5feb7e0>, <function extract_atom_value at 0x7f64b5febe20>, <function extract_atom_phenomena at 0x7f64b5fe0400>, <function propagate_atom_relation at 0x7f64b5fe0860>], ['classification sequence (1)', <function classify_modality_phenomena at 0x7f64b5fe13a0>, <function reclassify_argument_property_to_class at 0x7f64b5fe16c0>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f64b5fe2a20>, <function analyze_phenomena_polarity_2 at 0x7f64b5fe2d40>, <function analyze_phenomena_polarity_3 at 0x7f64b5fe3060>, <function analyze_phenomena_polarity_4 at 0x7f64b5fe3380>, <function analyze_phenomena_polarity_5 at 0x7f64b5fe36a0>, <function analyze_phenomena_mod_1 at 0x7f64b5fe3d80>, <function classify_modality_phenomena at 0x7f64b5fe13a0>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f64b5f48540>, <function analyze_phenomena_or_2 at 0x7f64b5f48cc0>, <function analyze_phenomena_and_1 at 0x7f64b5f49260>, <function analyze_phenomena_and_2 at 0x7f64b5f49760>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f64b5fe0cc0>, <function extract_composite_class_2 at 0x7f64b5fe1120>], ['classification sequence (2)', <function classify_entity_from_core_arguments at 0x7f64b5fe1940>, <function classify_entity_from_part_relation at 0x7f64b5fe1c60>, <function classify_entity_from_degree_arguments at 0x7f64b5fe1ee0>, <function classify_mother_from_domain_relation at 0x7f64b5fe2160>, <function propagate_individual_1 at 0x7f64b5fe23e0>, <function propagate_individual_2 at 0x7f64b5fe2480>]], 'Generation': [['OWL Generation Sequence', <function generate_owl_class at 0x7f64b5f4b060>, <function generate_owl_property at 0x7f64b5f4a160>, <function generate_owl_individual at 0x7f64b5f4b880>]]}
-- DEBUG -  [P-22] ----- step = Preprocessing, [['Bug fixing for some known anomalies of AMR-LD data', <function fix_amr_bug_1 at 0x7f64b6245e40>], ['AMR reification from AMR-Linked-Data to AMR (tenet) structure', <function reclassify_concept_1 at 0x7f64b6235ee0>, <function reclassify_concept_2 at 0x7f64b6235bc0>, <function reclassify_concept_3 at 0x7f64b6236de0>, <function reclassify_concept_4 at 0x7f64b62377e0>, <function reclassify_concept_5 at 0x7f64b62365c0>, <function reify_roles_as_concept at 0x7f64b6235b20>, <function reclassify_existing_variable at 0x7f64b6235580>, <function add_new_variable_for_reified_concept at 0x7f64b6234680>, <function add_amr_leaf_for_reclassified_concept at 0x7f64b5fe8180>, <function add_amr_leaf_for_reified_concept at 0x7f64b5fe8540>, <function add_amr_edge_for_core_relation at 0x7f64b5fe8900>, <function add_amr_edge_for_reified_concept at 0x7f64b5fe8c20>, <function add_amr_edge_for_name_relation at 0x7f64b5fe8fe0>, <function add_amr_edge_for_quant_relation at 0x7f64b5fe93a0>, <function add_amr_edge_for_polarity_relation at 0x7f64b5fe9760>, <function update_amr_edge_role_1 at 0x7f64b5fe9a80>, <function add_amr_root at 0x7f64b5fe9e40>]]
-- INFO -  [P-22] Failure
+- INFO -  [P-22] ----- reclassify AMR-LD concept (1): 5/5 new triples (633, 0:00:00.104025)
+- INFO -  [P-22] ----- reclassify AMR-LD concept (2): 8/8 new triples (641, 0:00:00.049012)
+- INFO -  [P-22] ----- reclassify AMR-LD concept (3): 16/16 new triples (657, 0:00:00.031463)
+- INFO -  [P-22] ----- reclassify AMR-LD concept (4): 36/36 new triples (693, 0:00:00.049874)
+- INFO -  [P-22] ----- reclassify AMR-LD concept (5): 4/4 new triples (697, 0:00:00.035458)
+- INFO -  [P-22] ----- reify roles as concept: 5/5 new triples (702, 0:00:00.037280)
+- INFO -  [P-22] ----- reclassify existing variable: 75/75 new triples (777, 0:00:00.018965)
+- INFO -  [P-22] ----- add new variable for reified concept: 4/4 new triples (781, 0:00:00.049597)
+- INFO -  [P-22] ----- add AMR leaf for reclassified concept: 54/54 new triples (835, 0:00:00.031578)
+- INFO -  [P-22] ----- add AMR leaf for reified concept: 4/4 new triples (839, 0:00:00.011811)
+- INFO -  [P-22] ----- add AMR edge for core relation: 48/48 new triples (887, 0:00:00.108507)
+- INFO -  [P-22] ----- add AMR edge for reified concept: 6/6 new triples (893, 0:00:00.077161)
+- INFO -  [P-22] ----- add AMR edge for name relation: 15/15 new triples (908, 0:00:00.022304)
+- INFO -  [P-22] ----- add AMR edge for quant relation: 5/5 new triples (913, 0:00:00.023884)
+- DEBUG -  [P-22] ----- add AMR edge for polarity relation: 0/0 new triple (913, 0:00:00.030441)
+- INFO -  [P-22] ----- update AMR edge role 1: 17/17 new triples (930, 0:00:00.094730)
+- INFO -  [P-22] ----- add AMR root: 5/5 new triples (935, 0:00:00.009795)
+- DEBUG -  [P-22] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-22] ----- step: Preprocessing
+- DEBUG -  [P-22] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-22] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-22] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-22] -- Step 2: Transduction
+- INFO -  [P-22] --- Sequence: atomic extraction sequence
+- INFO -  [P-22] ----- extract atom classes: 66/66 new triples (1001, 0:00:00.323115)
+- INFO -  [P-22] ----- extract atom individuals: 24/24 new triples (1025, 0:00:00.110724)
+- INFO -  [P-22] ----- extract atomic properties: 87/87 new triples (1112, 0:00:00.250854)
+- INFO -  [P-22] ----- extract atom values: 20/20 new triples (1132, 0:00:00.094297)
+- INFO -  [P-22] ----- extract atom phenomena: 7/7 new triples (1139, 0:00:00.038178)
+- INFO -  [P-22] ----- propagate atom relations: 30/96 new triples (1169, 0:00:01.842275)
+- INFO -  [P-22] --- Sequence: classification sequence (1)
+- INFO -  [P-22] ----- classify modality phenomena: 1/3 new triple (1170, 0:00:00.037516)
+- DEBUG -  [P-22] ----- reclassify argument property to class: 0/0 new triple (1170, 0:00:00.031212)
+- INFO -  [P-22] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (1): 0/0 new triple (1170, 0:00:00.009051)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (2): 0/0 new triple (1170, 0:00:00.017980)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (3): 0/0 new triple (1170, 0:00:00.017138)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (4): 0/0 new triple (1170, 0:00:00.040319)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (5): 0/0 new triple (1170, 0:00:00.038743)
+- DEBUG -  [P-22] ----- analyze modifier phenomena (mod): 0/0 new triple (1170, 0:00:00.009631)
+- DEBUG -  [P-22] ----- classify modality phenomena: 0/3 new triple (1170, 0:00:00.038278)
+- INFO -  [P-22] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-22] ----- analyze "or" phenomena (1): 0/0 new triple (1170, 0:00:00.016494)
+- DEBUG -  [P-22] ----- analyze "or" phenomena (2): 0/0 new triple (1170, 0:00:00.013148)
+- DEBUG -  [P-22] ----- analyze "and" phenomena (1): 0/0 new triple (1170, 0:00:00.012363)
+- DEBUG -  [P-22] ----- analyze "and" phenomena (2): 0/0 new triple (1170, 0:00:00.011058)
+- INFO -  [P-22] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-22] ----- extract composite classes (1): 0/0 new triple (1170, 0:00:00.036253)
+- INFO -  [P-22] ----- extract composite classes (2): 23/24 new triples (1193, 0:00:00.131389)
+- INFO -  [P-22] --- Sequence: classification sequence (2)
+- INFO -  [P-22] ----- classify class net as entity from core arguments: 14/61 new triples (1207, 0:00:00.185469)
+- DEBUG -  [P-22] ----- classify class net as entity from :part relation: 0/0 new triple (1207, 0:00:00.009289)
+- DEBUG -  [P-22] ----- classify class net as entity from degree arguments: 0/0 new triple (1207, 0:00:00.020424)
+- DEBUG -  [P-22] ----- Associate mother to class net from :domain relation: 0/0 new triple (1207, 0:00:00.011397)
+- DEBUG -  [P-22] ----- Propagate individuals to net with same base node: 0/36 new triple (1207, 0:00:00.130348)
+- DEBUG -  [P-22] ----- Propagate individuals to net with domain link: 0/0 new triple (1207, 0:00:00.010329)
+- DEBUG -  [P-22] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-22] ----- step: Transduction
+- DEBUG -  [P-22] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-22] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-22] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-22] -- Step 3: Generation
+- INFO -  [P-22] --- Sequence: OWL Generation Sequence
+- INFO -  [P-22] ----- generate OWL class: 35/39 new triples (1242, 0:00:00.385124)
+- INFO -  [P-22] ----- generate OWL property: 28/28 new triples (1270, 0:00:00.225372)
+- INFO -  [P-22] ----- generate OWL individual: 12/12 new triples (1282, 0:00:00.130272)
+- DEBUG -  [P-22] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-22] ----- step: Generation
+- DEBUG -  [P-22] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-22] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-22] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- DEBUG -  [P-22] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-22] ----- Number of factoids: 79
+- DEBUG -  [P-22] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-22] Success (79 extracted triple(s))
 - INFO - 
  [P-23]     *** extraction from sentence 23 *** 
 - INFO -  [P-23] -- Work Structure Preparation
@@ -1826,25 +2276,25 @@
 - DEBUG -  [P-23] ----- Total rule number: 0
 - INFO -  [P-23] -- Step 1: Preprocessing
 - INFO -  [P-23] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
-- DEBUG -  [P-23] ----- fix AMR bug (1): 0/0 new triple (612, 0:00:00.020017)
+- DEBUG -  [P-23] ----- fix AMR bug (1): 0/0 new triple (612, 0:00:00.015438)
 - INFO -  [P-23] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
-- INFO -  [P-23] ----- reclassify AMR-LD concept (1): 5/5 new triples (617, 0:00:00.085361)
-- INFO -  [P-23] ----- reclassify AMR-LD concept (2): 4/4 new triples (621, 0:00:00.044303)
-- INFO -  [P-23] ----- reclassify AMR-LD concept (3): 16/16 new triples (637, 0:00:00.029735)
-- INFO -  [P-23] ----- reclassify AMR-LD concept (4): 16/16 new triples (653, 0:00:00.049665)
-- INFO -  [P-23] ----- reclassify AMR-LD concept (5): 4/4 new triples (657, 0:00:00.027621)
-- DEBUG -  [P-23] ----- reify roles as concept: 0/0 new triple (657, 0:00:00.036295)
-- INFO -  [P-23] ----- reclassify existing variable: 57/57 new triples (714, 0:00:00.020071)
-- DEBUG -  [P-23] ----- add new variable for reified concept: 0/0 new triple (714, 0:00:00.043253)
-- INFO -  [P-23] ----- add AMR leaf for reclassified concept: 42/42 new triples (756, 0:00:00.019038)
-- DEBUG -  [P-23] ----- add AMR leaf for reified concept: 0/0 new triple (756, 0:00:00.010938)
-- INFO -  [P-23] ----- add AMR edge for core relation: 48/48 new triples (804, 0:00:00.095974)
-- DEBUG -  [P-23] ----- add AMR edge for reified concept: 0/0 new triple (804, 0:00:00.025598)
-- INFO -  [P-23] ----- add AMR edge for name relation: 5/5 new triples (809, 0:00:00.019708)
-- DEBUG -  [P-23] ----- add AMR edge for quant relation: 0/0 new triple (809, 0:00:00.018460)
-- DEBUG -  [P-23] ----- add AMR edge for polarity relation: 0/0 new triple (809, 0:00:00.026556)
-- INFO -  [P-23] ----- update AMR edge role 1: 14/14 new triples (823, 0:00:00.098444)
-- INFO -  [P-23] ----- add AMR root: 5/5 new triples (828, 0:00:00.015155)
+- INFO -  [P-23] ----- reclassify AMR-LD concept (1): 5/5 new triples (617, 0:00:00.086460)
+- INFO -  [P-23] ----- reclassify AMR-LD concept (2): 4/4 new triples (621, 0:00:00.046844)
+- INFO -  [P-23] ----- reclassify AMR-LD concept (3): 16/16 new triples (637, 0:00:00.035618)
+- INFO -  [P-23] ----- reclassify AMR-LD concept (4): 16/16 new triples (653, 0:00:00.048401)
+- INFO -  [P-23] ----- reclassify AMR-LD concept (5): 4/4 new triples (657, 0:00:00.029081)
+- DEBUG -  [P-23] ----- reify roles as concept: 0/0 new triple (657, 0:00:00.040364)
+- INFO -  [P-23] ----- reclassify existing variable: 57/57 new triples (714, 0:00:00.018298)
+- DEBUG -  [P-23] ----- add new variable for reified concept: 0/0 new triple (714, 0:00:00.047618)
+- INFO -  [P-23] ----- add AMR leaf for reclassified concept: 42/42 new triples (756, 0:00:00.022781)
+- DEBUG -  [P-23] ----- add AMR leaf for reified concept: 0/0 new triple (756, 0:00:00.011853)
+- INFO -  [P-23] ----- add AMR edge for core relation: 48/48 new triples (804, 0:00:00.099776)
+- DEBUG -  [P-23] ----- add AMR edge for reified concept: 0/0 new triple (804, 0:00:00.021084)
+- INFO -  [P-23] ----- add AMR edge for name relation: 5/5 new triples (809, 0:00:00.019813)
+- DEBUG -  [P-23] ----- add AMR edge for quant relation: 0/0 new triple (809, 0:00:00.023872)
+- DEBUG -  [P-23] ----- add AMR edge for polarity relation: 0/0 new triple (809, 0:00:00.104578)
+- INFO -  [P-23] ----- update AMR edge role 1: 14/14 new triples (823, 0:00:00.082504)
+- INFO -  [P-23] ----- add AMR root: 5/5 new triples (828, 0:00:00.010630)
 - DEBUG -  [P-23] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
 - DEBUG -  [P-23] ----- step: Preprocessing
 - DEBUG -  [P-23] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1852,38 +2302,38 @@
 - DEBUG -  [P-23] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
 - INFO -  [P-23] -- Step 2: Transduction
 - INFO -  [P-23] --- Sequence: atomic extraction sequence
-- INFO -  [P-23] ----- extract atom classes: 36/36 new triples (864, 0:00:00.289920)
-- INFO -  [P-23] ----- extract atom individuals: 8/8 new triples (872, 0:00:00.047000)
-- INFO -  [P-23] ----- extract atomic properties: 72/72 new triples (944, 0:00:00.286831)
-- INFO -  [P-23] ----- extract atom values: 5/5 new triples (949, 0:00:00.027546)
-- INFO -  [P-23] ----- extract atom phenomena: 14/14 new triples (963, 0:00:00.063586)
-- INFO -  [P-23] ----- propagate atom relations: 23/82 new triples (986, 0:00:01.026802)
+- INFO -  [P-23] ----- extract atom classes: 36/36 new triples (864, 0:00:00.183528)
+- INFO -  [P-23] ----- extract atom individuals: 8/8 new triples (872, 0:00:00.044367)
+- INFO -  [P-23] ----- extract atomic properties: 72/72 new triples (944, 0:00:00.216169)
+- INFO -  [P-23] ----- extract atom values: 5/5 new triples (949, 0:00:00.028774)
+- INFO -  [P-23] ----- extract atom phenomena: 14/14 new triples (963, 0:00:00.066308)
+- INFO -  [P-23] ----- propagate atom relations: 23/82 new triples (986, 0:00:01.055045)
 - INFO -  [P-23] --- Sequence: classification sequence (1)
-- DEBUG -  [P-23] ----- classify modality phenomena: 0/0 new triple (986, 0:00:00.022352)
-- DEBUG -  [P-23] ----- reclassify argument property to class: 0/0 new triple (986, 0:00:00.025531)
+- DEBUG -  [P-23] ----- classify modality phenomena: 0/0 new triple (986, 0:00:00.023715)
+- DEBUG -  [P-23] ----- reclassify argument property to class: 0/0 new triple (986, 0:00:00.025849)
 - INFO -  [P-23] --- Sequence: phenomena analyze sequence (1)
-- DEBUG -  [P-23] ----- analyze "polarity" phenomena (1): 0/0 new triple (986, 0:00:00.008554)
-- DEBUG -  [P-23] ----- analyze "polarity" phenomena (2): 0/0 new triple (986, 0:00:00.016910)
-- DEBUG -  [P-23] ----- analyze "polarity" phenomena (3): 0/0 new triple (986, 0:00:00.016560)
-- DEBUG -  [P-23] ----- analyze "polarity" phenomena (4): 0/0 new triple (986, 0:00:00.038705)
-- DEBUG -  [P-23] ----- analyze "polarity" phenomena (5): 0/0 new triple (986, 0:00:00.035601)
-- INFO -  [P-23] ----- analyze modifier phenomena (mod): 21/24 new triples (1007, 0:00:00.092734)
-- DEBUG -  [P-23] ----- classify modality phenomena: 0/0 new triple (1007, 0:00:00.021877)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (1): 0/0 new triple (986, 0:00:00.009045)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (2): 0/0 new triple (986, 0:00:00.020467)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (3): 0/0 new triple (986, 0:00:00.018825)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (4): 0/0 new triple (986, 0:00:00.038298)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (5): 0/0 new triple (986, 0:00:00.039508)
+- INFO -  [P-23] ----- analyze modifier phenomena (mod): 21/24 new triples (1007, 0:00:00.099982)
+- DEBUG -  [P-23] ----- classify modality phenomena: 0/0 new triple (1007, 0:00:00.022026)
 - INFO -  [P-23] --- Sequence: phenomena analyze sequence (2)
-- DEBUG -  [P-23] ----- analyze "or" phenomena (1): 0/0 new triple (1007, 0:00:00.015369)
-- DEBUG -  [P-23] ----- analyze "or" phenomena (2): 0/0 new triple (1007, 0:00:00.013073)
-- DEBUG -  [P-23] ----- analyze "and" phenomena (1): 0/0 new triple (1007, 0:00:00.010632)
-- DEBUG -  [P-23] ----- analyze "and" phenomena (2): 0/0 new triple (1007, 0:00:00.010581)
+- DEBUG -  [P-23] ----- analyze "or" phenomena (1): 0/0 new triple (1007, 0:00:00.013274)
+- DEBUG -  [P-23] ----- analyze "or" phenomena (2): 0/0 new triple (1007, 0:00:00.012400)
+- DEBUG -  [P-23] ----- analyze "and" phenomena (1): 0/0 new triple (1007, 0:00:00.013163)
+- DEBUG -  [P-23] ----- analyze "and" phenomena (2): 0/0 new triple (1007, 0:00:00.011399)
 - INFO -  [P-23] --- Sequence: composite class extraction sequence
-- DEBUG -  [P-23] ----- extract composite classes (1): 0/0 new triple (1007, 0:00:00.029887)
-- DEBUG -  [P-23] ----- extract composite classes (2): 0/0 new triple (1007, 0:00:00.028844)
+- DEBUG -  [P-23] ----- extract composite classes (1): 0/0 new triple (1007, 0:00:00.033139)
+- DEBUG -  [P-23] ----- extract composite classes (2): 0/0 new triple (1007, 0:00:00.031424)
 - INFO -  [P-23] --- Sequence: classification sequence (2)
-- INFO -  [P-23] ----- classify class net as entity from core arguments: 8/86 new triples (1015, 0:00:00.173716)
-- DEBUG -  [P-23] ----- classify class net as entity from :part relation: 0/0 new triple (1015, 0:00:00.008823)
-- DEBUG -  [P-23] ----- classify class net as entity from degree arguments: 0/0 new triple (1015, 0:00:00.021011)
-- DEBUG -  [P-23] ----- Associate mother to class net from :domain relation: 0/0 new triple (1015, 0:00:00.009487)
-- DEBUG -  [P-23] ----- Propagate individuals to net with same base node: 0/22 new triple (1015, 0:00:00.057974)
-- DEBUG -  [P-23] ----- Propagate individuals to net with domain link: 0/0 new triple (1015, 0:00:00.008406)
+- INFO -  [P-23] ----- classify class net as entity from core arguments: 8/86 new triples (1015, 0:00:00.217191)
+- DEBUG -  [P-23] ----- classify class net as entity from :part relation: 0/0 new triple (1015, 0:00:00.009346)
+- DEBUG -  [P-23] ----- classify class net as entity from degree arguments: 0/0 new triple (1015, 0:00:00.020324)
+- DEBUG -  [P-23] ----- Associate mother to class net from :domain relation: 0/0 new triple (1015, 0:00:00.011090)
+- DEBUG -  [P-23] ----- Propagate individuals to net with same base node: 0/22 new triple (1015, 0:00:00.062000)
+- DEBUG -  [P-23] ----- Propagate individuals to net with domain link: 0/0 new triple (1015, 0:00:00.008493)
 - DEBUG -  [P-23] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
 - DEBUG -  [P-23] ----- step: Transduction
 - DEBUG -  [P-23] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1891,9 +2341,9 @@
 - DEBUG -  [P-23] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
 - INFO -  [P-23] -- Step 3: Generation
 - INFO -  [P-23] --- Sequence: OWL Generation Sequence
-- INFO -  [P-23] ----- generate OWL class: 23/23 new triples (1038, 0:00:00.207507)
-- INFO -  [P-23] ----- generate OWL property: 20/24 new triples (1058, 0:00:00.196241)
-- INFO -  [P-23] ----- generate OWL individual: 6/8 new triples (1064, 0:00:00.086692)
+- INFO -  [P-23] ----- generate OWL class: 23/23 new triples (1038, 0:00:00.219852)
+- INFO -  [P-23] ----- generate OWL property: 20/24 new triples (1058, 0:00:00.201093)
+- INFO -  [P-23] ----- generate OWL individual: 6/8 new triples (1064, 0:00:00.089595)
 - DEBUG -  [P-23] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
 - DEBUG -  [P-23] ----- step: Generation
 - DEBUG -  [P-23] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
@@ -1906,7 +2356,7 @@
 - INFO - 
  === Final Ontology Generation  === 
 - INFO - -- Making complete factoid graph by merging the result factoids
-- INFO - ----- Total factoid number: 1145
+- INFO - ----- Total factoid number: 1867
 - INFO - -- Serializing graph to factoid string
 - INFO - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
 - INFO - -- Serializing graph to factoid file
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
index 560bdf074b22fbc87ddbcd62951b6bd38f48e1ed..cc9b4a523dd9a8321fd128b5066fad7aa9275971 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -2,65 +2,73 @@
 @prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
 @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
 @prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
-@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
-@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 @prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
-ns21:Concept a rdfs:Class,
+ns3:Concept a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Concept" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:Role a rdfs:Class,
+ns3:Role a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Role" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
-    ns21:hasSentence "The sun is a star." ;
-    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
 
-<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
-    ns21:hasSentence "Earth is a planet." ;
-    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns11:direct-02.ARG1 a ns11:FrameRole .
+ns11:compose-01.ARG1 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG1 a ns11:FrameRole .
+ns11:compose-01.ARG2 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG2 a ns11:FrameRole .
+ns11:discover-01.ARG1 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG3 a ns11:FrameRole .
+ns11:lie-07.ARG1 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG5 a ns11:FrameRole .
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:new-01.ARG1 a ns11:FrameRole .
 
 ns11:orbit-01.ARG0 a ns11:FrameRole .
 
-ns11:orbit-01.ARG1 a ns11:FrameRole .
+ns11:scatter-01.ARG1 a ns11:FrameRole .
+
+ns11:transpire-01.ARG0 a ns11:FrameRole .
 
-ns11:remain-01.ARG1 a ns11:FrameRole .
+ns11:transpire-01.ARG1 a ns11:FrameRole .
 
-ns3:domain a ns21:Role,
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
         owl:AnnotationProperty,
         owl:NamedIndividual .
 
-ns3:mod a ns21:Role .
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
 
-ns3:op1 a ns21:Role .
+ns2:op1 a ns3:Role .
 
-ns3:op2 a ns21:Role .
+ns2:op2 a ns3:Role .
 
-ns3:op3 a ns21:Role .
+ns2:quant a ns3:Role .
 
-ns21:hasID a owl:AnnotationProperty .
+ns3:hasID a owl:AnnotationProperty .
 
-ns21:hasSentence a owl:AnnotationProperty .
+ns3:hasSentence a owl:AnnotationProperty .
 
-ns21:root a owl:AnnotationProperty .
+ns3:root a owl:AnnotationProperty .
 
 <https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
     owl:versionIRI :0.1 .
@@ -74,93 +82,95 @@ ns21:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Structure .
 
 :edge_a2_b a :AMR_Edge ;
-    :hasAmrRole :role_op3 ;
-    :hasRoleID "op3" .
-
-:edge_a2_o3 a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_a2_p2 a :AMR_Edge ;
+:edge_a2_d a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_a_h a :AMR_Edge ;
+:edge_a_a2 a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_a_r a :AMR_Edge ;
+:edge_a_p3 a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_b_s3 a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_b2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_name_KuiperBelt a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_c_ii a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
 
-:edge_d_o2 a :AMR_Edge ;
+:edge_c_p a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_h2_m2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG3 ;
-    :hasRoleID "ARG3" .
-
-:edge_h2_o3 a :AMR_Edge ;
+:edge_d2_p3 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_h2_s2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_h_l a :AMR_Edge ;
+:edge_l_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b3 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_h_m a :AMR_Edge ;
-    :hasAmrRole :role_ARG3 ;
-    :hasRoleID "ARG3" .
-
-:edge_h_o a :AMR_Edge ;
-    :hasAmrRole :role_ARG5 ;
-    :hasRoleID "ARG5" .
-
-:edge_h_p a :AMR_Edge ;
+:edge_n3_d2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_o2_o a :AMR_Edge ;
+:edge_o2_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_o2_s a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_p2_name_Neptunian a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p2_d2 a :AMR_Edge ;
+:edge_p3_b2 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_p3_s2 a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
-:edge_p9_ARG0_s4 a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_p_a2 a :AMR_Edge ;
+    :hasRoleID "consist" .
 
-:edge_p9_ARG1_b a :AMR_Edge ;
+:edge_p_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_s_d a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_p_quant_8 a :AMR_Edge ;
-    :hasAmrRole :role_quant ;
-    :hasRoleID "quant" .
+:edge_t_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
 
-:edge_r_a2 a :AMR_Edge ;
+:edge_t_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_s4_name_SolarSystem a :AMR_Edge ;
-    :hasAmrRole :role_name ;
-    :hasRoleID "name" .
-
 :fromAmrLkFramerole a owl:AnnotationProperty ;
     rdfs:subPropertyOf :fromAmrLk .
 
@@ -238,6 +248,11 @@ ns21:root a owl:AnnotationProperty .
     :hasConceptLink "or" ;
     :label "conjunction-OR" .
 
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
 :phenomena_modality_obligation a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "obligate-01" ;
@@ -298,10 +313,18 @@ ns21:root a owl:AnnotationProperty .
     :hasReification false ;
     :hasRelationName "quant" .
 
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
 :role_ARG4 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG4" .
 
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
 :role_ARG6 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG6" .
@@ -339,6 +362,10 @@ ns21:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
 :role_op4 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op4" .
@@ -376,11 +403,11 @@ ns21:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:root_WikiAbstract-SolarSystem-02 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> ;
-    :hasRootLeaf :leaf_and_a ;
-    :hasSentenceID "WikiAbstract-SolarSystem-02" ;
-    :hasSentenceStatement "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." .
+:root_WikiAbstract-SolarSystem-12 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> ;
+    :hasRootLeaf :leaf_lie-07_l ;
+    :hasSentenceID "WikiAbstract-SolarSystem-12" ;
+    :hasSentenceStatement "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -445,62 +472,63 @@ cprm:targetOntologyURI a rdf:Property ;
     rdfs:range xsd:string ;
     rdfs:subPropertyOf cprm:configParamProperty .
 
-<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#system> ;
-    rdfs:label "SolarSystem" ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ;
-    rdfs:label "direct" ;
-    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#KuiperBelt> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#belt> ;
+    rdfs:label "KuiperBelt" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+<https://tenet.tetras-libre.fr/extract-result#Neptunian> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Neptunian" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
-    rdfs:label "hasPart" ;
-    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
+    rdfs:label "disc" ;
+    rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
-    rdfs:label "large" ;
+<https://tenet.tetras-libre.fr/extract-result#discover> a owl:Class ;
+    rdfs:label "discover" ;
     rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
-    rdfs:label "more" ;
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
-    rdfs:label "most" ;
+<https://tenet.tetras-libre.fr/extract-result#new> a owl:ObjectProperty ;
+    rdfs:label "new" ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
-    rdfs:label "object" ;
-    rdfs:subClassOf sys:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#object-population-compose-ice> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#compose> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#ice> ],
+        <https://tenet.tetras-libre.fr/extract-result#object-population> ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
     rdfs:label "orbit" ;
-    rdfs:subClassOf sys:Entity ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
-    rdfs:label "remain" ;
+<https://tenet.tetras-libre.fr/extract-result#scatter> a owl:ObjectProperty ;
+    rdfs:label "scatter" ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population-lie-beyond> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#lie> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#beyond> ],
+        <https://tenet.tetras-libre.fr/extract-result#sednoid-population> ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
-    rdfs:label "sun" ;
-    rdfs:subClassOf sys:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#transpire> a owl:ObjectProperty ;
+    rdfs:label "transpire" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
 <https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
@@ -517,54 +545,102 @@ net:Property_Axiom_Net a owl:Class ;
 net:Property_Direction a owl:Class ;
     rdfs:subClassOf net:Feature .
 
-net:Restriction_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
 net:abstractionClass a owl:AnnotationProperty ;
     rdfs:label "abstraction class" ;
     rdfs:subPropertyOf net:objectValue .
 
+net:atomClass_beyond_b2 a net:Atom_Class_Net ;
+    :role_op1 net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_beyond_b2 ;
+    net:coverNode :leaf_beyond_b2 ;
+    net:hasClassName "beyond" ;
+    net:hasNaming "beyond" ;
+    net:hasStructure "unknown" .
+
 net:atomOf a owl:AnnotationProperty ;
     rdfs:label "atom of" ;
     rdfs:subPropertyOf net:typeProperty .
 
-net:atomProperty_direct_d a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_orbit_o2,
-        net:atomProperty_orbit_o2 ;
-    net:coverBaseNode :leaf_direct-02_d ;
-    net:coverNode :leaf_direct-02_d ;
-    net:hasNaming "direct" ;
-    net:hasPropertyName "direct" ;
-    net:hasPropertyName01 "directing" ;
-    net:hasPropertyName10 "direct-by" ;
-    net:hasPropertyName12 "direct-of" ;
+net:atomProperty_new_n3 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_discover_d2,
+        net:atomProperty_discover_d2 ;
+    net:coverBaseNode :leaf_new-01_n3 ;
+    net:coverNode :leaf_new-01_n3 ;
+    net:hasNaming "new" ;
+    net:hasPropertyName "new" ;
+    net:hasPropertyName01 "newing" ;
+    net:hasPropertyName10 "new-by" ;
+    net:hasPropertyName12 "new-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_discover-01_d2 .
+
+net:atomProperty_scatter_s a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_scatter-01_s ;
+    net:coverNode :leaf_scatter-01_s ;
+    net:hasNaming "scatter" ;
+    net:hasPropertyName "scatter" ;
+    net:hasPropertyName01 "scattering" ;
+    net:hasPropertyName10 "scatter-by" ;
+    net:hasPropertyName12 "scatter-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_orbit-01_o2 .
-
-net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_system_s4,
-        net:individual_SolarSystem_s4 ;
-    :role_ARG1 net:atomClass_body_b,
-        net:compositeClass_small-body_b ;
-    net:coverBaseNode :leaf_hasPart_p9 ;
-    net:coverNode :leaf_hasPart_p9 ;
-    net:hasNaming "hasPart" ;
-    net:hasPropertyName "hasPart" ;
-    net:hasPropertyName01 "hasParting" ;
-    net:hasPropertyName10 "hasPart-by" ;
-    net:hasPropertyName12 "hasPart-of" ;
+    net:targetArgumentNode :leaf_disc_d .
+
+net:atomProperty_transpire_t a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:individual_Neptunian_p2 ;
+    net:coverBaseNode :leaf_transpire-01_t ;
+    net:coverNode :leaf_transpire-01_t ;
+    net:hasNaming "transpire" ;
+    net:hasPropertyName "transpire" ;
+    net:hasPropertyName01 "transpireing" ;
+    net:hasPropertyName10 "transpire-by" ;
+    net:hasPropertyName12 "transpire-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_body_b,
-        :leaf_system_s4 .
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_planet_p2 .
 
 net:atomType a owl:AnnotationProperty ;
     rdfs:label "atom type" ;
     rdfs:subPropertyOf net:objectType .
 
+net:compositeClass_object-population-compose-ice_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:composeFrom net:atomClass_ice_ii,
+        net:atomProperty_compose_c,
+        net:compositeClass_object-population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_compose-01_c,
+        :leaf_ice_ii,
+        :leaf_object_o,
+        :leaf_population_p ;
+    net:hasMotherClassNet net:compositeClass_object-population_p ;
+    net:hasNaming "object-population-compose-ice" ;
+    net:hasRestriction net:restriction_compose-ice_c ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_sednoid-population-lie-beyond_p3 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:composeFrom net:atomClass_beyond_b3,
+        net:atomProperty_lie_l,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_beyond_b3,
+        :leaf_lie-07_l,
+        :leaf_population_p3,
+        :leaf_sednoid_s2 ;
+    net:hasMotherClassNet net:compositeClass_sednoid-population_p3 ;
+    net:hasNaming "sednoid-population-lie-beyond" ;
+    net:hasRestriction net:restriction_lie-beyond_l ;
+    net:hasStructure "unknown" .
+
 net:entityClass a owl:AnnotationProperty ;
     rdfs:label "entity class" ;
     rdfs:subPropertyOf net:objectValue .
@@ -660,24 +736,24 @@ net:has_target a owl:AnnotationProperty ;
     rdfs:label "has target" ;
     rdfs:subPropertyOf net:has_relation_value .
 
-net:individual_dwarf_d2 a net:Individual_Net ;
-    net:composeFrom net:atomClass_dwarf_d2 ;
-    net:coverBaseNode :leaf_dwarf_d2 ;
-    net:coverNode :leaf_dwarf_d2 ;
+net:individual_object_o a net:Individual_Net ;
+    net:composeFrom net:atomClass_object_o ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
     net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "dwarf" ;
-    net:hasMotherClassNet net:atomClass_dwarf_d2 ;
-    net:hasNaming "dwarf" ;
+    net:hasIndividualLabel "object" ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object" ;
     net:hasStructure "unknown" .
 
-net:individual_small_s3 a net:Individual_Net ;
-    net:composeFrom net:atomClass_small_s3 ;
-    net:coverBaseNode :leaf_small_s3 ;
-    net:coverNode :leaf_small_s3 ;
+net:individual_sednoid_s2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_sednoid_s2 ;
+    net:coverNode :leaf_sednoid_s2 ;
     net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "small" ;
-    net:hasMotherClassNet net:atomClass_small_s3 ;
-    net:hasNaming "small" ;
+    net:hasIndividualLabel "sednoid" ;
+    net:hasMotherClassNet net:atomClass_sednoid_s2 ;
+    net:hasNaming "sednoid" ;
     net:hasStructure "unknown" .
 
 net:inverse_direction a owl:NamedIndividual .
@@ -704,27 +780,6 @@ net:modCat2 a owl:AnnotationProperty ;
 
 net:normal_direction a owl:NamedIndividual .
 
-net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
-    :role_op1 net:phenomena_degree_h ;
-    :role_op2 net:atomProperty_remain_r ;
-    net:coverBaseNode :leaf_and_a ;
-    net:coverNode :leaf_and_a ;
-    net:hasNaming "conjunction-AND" ;
-    net:hasPhenomenaRef "and" ;
-    net:hasPhenomenaType :phenomena_conjunction_and ;
-    net:hasStructure "unknown" .
-
-net:phenomena_degree_h2 a net:Phenomena_Net ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_ARG2 net:atomClass_small_s2 ;
-    :role_ARG3 net:atomProperty_more_m2 ;
-    net:coverBaseNode :leaf_have-degree-91_h2 ;
-    net:coverNode :leaf_have-degree-91_h2 ;
-    net:hasNaming "degree" ;
-    net:hasPhenomenaRef "have-degree-91" ;
-    net:hasPhenomenaType :phenomena_degree ;
-    net:hasStructure "unknown" .
-
 net:relationOf a owl:AnnotationProperty ;
     rdfs:label "relation of" ;
     rdfs:subPropertyOf net:typeProperty .
@@ -737,99 +792,101 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> a ns11:direct-02 ;
-    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> a ns11:have-degree-91 ;
-    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
-    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
-    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> a ns11:new-01 ;
+    ns11:new-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> a ns21:AMR ;
-    ns21:has-id "WikiAbstract-SolarSystem-02" ;
-    ns21:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
-    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-12" ;
+    ns3:has-sentence "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> a ns3:system ;
-    rdfs:label "Solar System" ;
-    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> a ns11:scatter-01 ;
+    ns11:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> a ns11:transpire-01 ;
+    ns11:transpire-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    ns11:transpire-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
 <http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
 
-ns21:AMR a owl:Class ;
+ns3:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:NamedEntity a ns21:Concept,
+ns3:NamedEntity a ns3:Concept,
         owl:Class,
         owl:NamedIndividual ;
     rdfs:label "AMR-EntityType",
         "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_body rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:body ;
-    :label "body" .
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:belt ;
+    :label "belt" .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:compose-01 ;
+    :label "compose-01" .
 
-:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:direct-02 ;
-    :label "direct-02" .
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:disc ;
+    :label "disc" .
 
-:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:dwarf ;
-    :label "dwarf" .
+:concept_discover-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:discover-01 ;
+    :label "discover-01" .
 
-:concept_large rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:large ;
-    :label "large" .
+:concept_ice rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:ice ;
+    :label "ice" .
 
-:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:more ;
-    :label "more" .
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:lie-07 ;
+    :label "lie-07" .
 
 :concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:most ;
+    :fromAmrLk ns3:most ;
     :label "most" .
 
+:concept_new-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:new-01 ;
+    :label "new-01" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
 :concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
     :fromAmrLk ns11:orbit-01 ;
     :label "orbit-01" .
 
-:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:part ;
-    :isReifiedConcept true ;
-    :label "hasPart" .
-
-:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:remain-01 ;
-    :label "remain-01" .
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
 
-:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:sun ;
-    :label "sun" .
+:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:scatter-01 ;
+    :label "scatter-01" .
 
-:concept_system rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:system ;
-    :label "system" .
+:concept_sednoid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sednoid ;
+    :label "sednoid" .
 
-:role_ARG5 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG5" .
-
-:role_name a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
-
-:role_op3 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op3" .
+:concept_transpire-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:transpire-01 ;
+    :label "transpire-01" .
 
 :role_quant a owl:Class,
         net:Relation ;
@@ -837,90 +894,86 @@ ns21:NamedEntity a ns21:Concept,
     :label "quant" .
 
 :variable_a a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
     :label "a" .
 
 :variable_a2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
     :label "a2" .
 
 :variable_b a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
-    :label "b" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    :label "b" ;
+    :name "Kuiper Belt" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    :label "b2" .
+
+:variable_b3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
+    :label "b3" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> ;
+    :label "c" .
 
 :variable_d a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
     :label "d" .
 
 :variable_d2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
     :label "d2" .
 
-:variable_h a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
-    :label "h" .
-
-:variable_h2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> ;
-    :label "h2" .
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
+    :label "ii" .
 
 :variable_l a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> ;
     :label "l" .
 
 :variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
     :label "m" .
 
-:variable_m2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
-    :label "m2" .
+:variable_n3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> ;
+    :label "n3" .
 
 :variable_o a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
     :label "o" .
 
 :variable_o2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
     :label "o2" .
 
-:variable_o3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
-    :label "o3" .
-
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
     :label "p" .
 
 :variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
-    :label "p2" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    :label "p2" ;
+    :name "Neptunian" .
 
-:variable_p9 a ns3:part,
-        :AMR_Variable ;
-    :isReifiedVariable true ;
-    :label "p9" .
-
-:variable_r a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
-    :label "r" .
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    :label "p3" .
 
 :variable_s a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> ;
     :label "s" .
 
 :variable_s2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
     :label "s2" .
 
-:variable_s3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
-    :label "s3" .
-
-:variable_s4 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> ;
-    :label "s4" ;
-    :name "Solar System" .
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> ;
+    :label "t" .
 
 sys:Degree a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
@@ -930,29 +983,47 @@ sys:Feature a owl:Class ;
 
 sys:Out_AnnotationProperty a owl:AnnotationProperty .
 
-<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
-    rdfs:label "body" ;
+<https://tenet.tetras-libre.fr/extract-result#beyond> a owl:Class ;
+    rdfs:label "beyond" ;
+    rdfs:subClassOf sys:Entity,
+        sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
+    rdfs:label "compose" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#ice> a owl:Class ;
+    rdfs:label "ice" ;
     rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
-    rdfs:label "dwarf" ;
-    rdfs:subClassOf sys:Undetermined_Thing ;
+<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
-    rdfs:label "planet" ;
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "object" ;
     rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+<https://tenet.tetras-libre.fr/extract-result#object-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid> a owl:Class,
         owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#small> ;
-    rdfs:label "small" ;
-    rdfs:subClassOf sys:Entity,
-        sys:Undetermined_Thing ;
+        <https://tenet.tetras-libre.fr/extract-result#sednoid> ;
+    rdfs:label "sednoid" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
     sys:fromStructure "unknown" .
 
 net:Axiom_Net a owl:Class ;
@@ -961,58 +1032,18 @@ net:Axiom_Net a owl:Class ;
 net:Feature a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
-net:atomClass_large_l a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_large_l ;
-    net:coverNode :leaf_large_l ;
-    net:hasClassName "large" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "large" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_orbit_o2 a net:Atom_Class_Net,
-        net:Class_Net ;
-    :role_ARG0 net:atomClass_object_o ;
-    :role_ARG1 net:atomClass_sun_s ;
-    net:composeFrom net:atomProperty_orbit_o2 ;
-    net:coverBaseNode :leaf_orbit-01_o2 ;
-    net:coverNode :leaf_orbit-01_o2 ;
-    net:hasClassName "orbit" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "orbit" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_planet_p a net:Atom_Class_Net,
-        net:Class_Net ;
-    :role_quant net:value_8_blankNode ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_small_s2 a net:Atom_Class_Net,
+net:atomClass_discover_d2 a net:Atom_Class_Net,
         net:Class_Net ;
-    net:coverBaseNode :leaf_small_s2 ;
-    net:coverNode :leaf_small_s2 ;
-    net:hasClassName "small" ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:composeFrom net:atomProperty_discover_d2 ;
+    net:coverBaseNode :leaf_discover-01_d2 ;
+    net:coverNode :leaf_discover-01_d2 ;
+    net:hasClassName "discover" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "small" ;
+    net:hasNaming "discover" ;
     net:hasStructure "unknown" .
 
-net:atomProperty_more_m2 a net:Atom_Property_Net ;
-    net:coverBaseNode :leaf_more_m2 ;
-    net:coverNode :leaf_more_m2 ;
-    net:hasNaming "more" ;
-    net:hasPropertyName "more" ;
-    net:hasPropertyName01 "moreing" ;
-    net:hasPropertyName10 "more-by" ;
-    net:hasPropertyName12 "more-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" .
-
 net:atomProperty_most_m a net:Atom_Property_Net ;
     net:coverBaseNode :leaf_most_m ;
     net:coverNode :leaf_most_m ;
@@ -1025,207 +1056,190 @@ net:atomProperty_most_m a net:Atom_Property_Net ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" .
 
-net:atomProperty_remain_r a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_body_b,
-        net:atomClass_object_o3,
-        net:atomClass_planet_p2,
-        net:compositeClass_dwarf-planet_p2,
-        net:compositeClass_small-body_b,
-        net:phenomena_conjunction-AND_a2 ;
-    net:coverBaseNode :leaf_remain-01_r ;
-    net:coverNode :leaf_remain-01_r ;
-    net:hasNaming "remain" ;
-    net:hasPropertyName "remain" ;
-    net:hasPropertyName01 "remaining" ;
-    net:hasPropertyName10 "remain-by" ;
-    net:hasPropertyName12 "remain-of" ;
+net:atomProperty_orbit_o2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p2,
+        net:individual_Neptunian_p2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_and_a2 .
+    net:targetArgumentNode :leaf_planet_p2 .
 
 net:has_value a owl:AnnotationProperty ;
     rdfs:subPropertyOf net:netProperty .
 
-net:individual_SolarSystem_s4 a net:Individual_Net ;
-    :role_name net:value_SolarSystem_blankNode ;
-    net:coverBaseNode :leaf_system_s4 ;
-    net:coverNode :leaf_system_s4 ;
-    net:hasIndividualLabel "SolarSystem" ;
-    net:hasMotherClassNet net:atomClass_system_s4 ;
-    net:hasNaming "SolarSystem" ;
+net:individual_KuiperBelt_b a net:Individual_Net ;
+    :role_name net:value_KuiperBelt_blankNode ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasIndividualLabel "KuiperBelt" ;
+    net:hasMotherClassNet net:atomClass_belt_b ;
+    net:hasNaming "KuiperBelt" ;
     net:hasStructure "unknown" .
 
 net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
-    :role_op1 net:atomClass_object_o3 ;
-    :role_op2 net:atomClass_planet_p2,
-        net:compositeClass_dwarf-planet_p2 ;
-    :role_op3 net:atomClass_body_b,
-        net:compositeClass_small-body_b ;
-    net:coverBaseNode :leaf_and_a2 ;
-    net:coverNode :leaf_and_a2 ;
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_belt_b,
+        net:atomClass_disc_d,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_op2 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
     net:hasNaming "conjunction-AND" ;
     net:hasPhenomenaRef "and" ;
     net:hasPhenomenaType :phenomena_conjunction_and ;
     net:hasStructure "unknown" .
 
-net:phenomena_degree_h a net:Phenomena_Net ;
-    :role_ARG1 net:atomClass_planet_p ;
-    :role_ARG2 net:atomClass_large_l ;
-    :role_ARG3 net:atomProperty_most_m ;
-    :role_ARG5 net:atomClass_object_o ;
-    net:coverBaseNode :leaf_have-degree-91_h ;
-    net:coverNode :leaf_have-degree-91_h ;
-    net:hasNaming "degree" ;
-    net:hasPhenomenaRef "have-degree-91" ;
-    net:hasPhenomenaType :phenomena_degree ;
+net:restriction_compose-ice_c a net:Restriction_Net ;
+    net:composeFrom net:atomClass_ice_ii,
+        net:atomProperty_compose_c ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c,
+        :leaf_ice_ii ;
+    net:hasNaming "compose-ice" ;
+    net:hasRestrictionNetValue net:atomClass_ice_ii ;
+    net:hasRestrictionOnProperty net:atomProperty_compose_c ;
     net:hasStructure "unknown" .
 
-net:value_8_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_8 ;
-    net:hasNaming "8" ;
-    net:hasStructure "unknown" ;
-    net:hasValueLabel "8" .
+net:restriction_lie-beyond_l a net:Restriction_Net ;
+    net:composeFrom net:atomClass_beyond_b3,
+        net:atomProperty_lie_l ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_beyond_b3,
+        :leaf_lie-07_l ;
+    net:hasNaming "lie-beyond" ;
+    net:hasRestrictionNetValue net:atomClass_beyond_b3 ;
+    net:hasRestrictionOnProperty net:atomProperty_lie_l ;
+    net:hasStructure "unknown" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> a ns21:and ;
-    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
-    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> a ns21:and ;
-    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
-    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
-    ns3:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> a ns2:belt ;
+    rdfs:label "Kuiper Belt" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> a ns3:dwarf ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> a ns11:have-degree-91 ;
-    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
-    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
-    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
-    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> a ns3:large ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> a ns11:discover-01 ;
+    ns11:discover-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> a ns21:most ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> a ns2:ice ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> a ns21:more ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> a ns11:orbit-01 ;
-    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
-    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> a ns3:most ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> a <http://amr.isi.edu/entity-types#planet> ;
-    ns3:quant "8" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> a <http://amr.isi.edu/entity-types#planet> ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> a ns2:population ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> a ns11:remain-01 ;
-    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> a ns2:sednoid ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> a ns3:sun ;
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> a ns3:small ;
+ns11:compose-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> a ns3:small ;
+ns11:discover-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:direct-02 a ns21:Frame ;
+ns11:lie-07 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:orbit-01 a ns21:Frame ;
+ns11:new-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:remain-01 a ns21:Frame ;
+ns11:orbit-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:body a ns21:Concept ;
+ns11:scatter-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:dwarf a ns21:Concept ;
+ns11:transpire-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:large a ns21:Concept ;
+ns2:belt a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:part a ns21:Role ;
+ns2:disc a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:sun a ns21:Concept ;
+ns2:ice a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:system a ns21:Concept ;
+ns2:object a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:more a ns21:Concept ;
+ns2:sednoid a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:most a ns21:Concept ;
+ns3:most a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :concept_and rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns21:and ;
+    :fromAmrLk ns3:and ;
     :hasPhenomenaLink :phenomena_conjunction_and ;
     :label "and" .
 
-:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns11:have-degree-91 ;
-    :hasPhenomenaLink :phenomena_degree ;
-    :label "have-degree-91" .
-
-:concept_object rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:object ;
-    :label "object" .
+:concept_beyond rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:beyond ;
+    :label "beyond" .
 
-:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
-    :label "planet" .
-
-:concept_small rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:small ;
-    :label "small" .
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
 
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_direct-02_d a :AMR_Leaf ;
-    :edge_d_o2 :leaf_orbit-01_o2 ;
-    :hasConcept :concept_direct-02 ;
-    :hasVariable :variable_d .
+:leaf_new-01_n3 a :AMR_Leaf ;
+    :edge_n3_d2 :leaf_discover-01_d2 ;
+    :hasConcept :concept_new-01 ;
+    :hasVariable :variable_n3 .
 
-:leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_s4 :leaf_system_s4 ;
-    :edge_p9_ARG1_b :leaf_body_b ;
-    :hasConcept :concept_part ;
-    :hasVariable :variable_p9 ;
-    :isReifiedLeaf true .
+:leaf_scatter-01_s a :AMR_Leaf ;
+    :edge_s_d :leaf_disc_d ;
+    :hasConcept :concept_scatter-01 ;
+    :hasVariable :variable_s .
 
-:leaf_have-degree-91_h2 a :AMR_Leaf ;
-    :edge_h2_m2 :leaf_more_m2 ;
-    :edge_h2_o3 :leaf_object_o3 ;
-    :edge_h2_s2 :leaf_small_s2 ;
-    :hasConcept :concept_have-degree-91 ;
-    :hasVariable :variable_h2 .
+:leaf_transpire-01_t a :AMR_Leaf ;
+    :edge_t_o :leaf_object_o ;
+    :edge_t_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_transpire-01 ;
+    :hasVariable :variable_t .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1244,11 +1258,6 @@ ns21:most a ns21:Concept ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG2" .
 
-:role_ARG3 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG3" .
-
 :role_mod a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_NonCore_Role ;
@@ -1260,116 +1269,115 @@ ns21:most a ns21:Concept ;
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
-:role_op1 a owl:Class,
+:role_name a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
 
 :role_op2 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op2" .
 
-:value_8 a :AMR_Value ;
-    rdfs:label "8" .
+:value_KuiperBelt a :AMR_Value ;
+    rdfs:label "KuiperBelt" .
 
-:value_SolarSystem a :AMR_Value ;
-    rdfs:label "SolarSystem" .
+:value_Neptunian a :AMR_Value ;
+    rdfs:label "Neptunian" .
 
 sys:Undetermined_Thing a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
 
-net:Composite_Class_Net a owl:Class ;
-    rdfs:subClassOf net:Class_Net .
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
 
-net:Property_Net a owl:Class ;
+net:Phenomena_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Value_Net a owl:Class ;
+net:Property_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_sun_s a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_sun_s ;
-    net:coverNode :leaf_sun_s ;
-    net:hasClassName "sun" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "sun" ;
-    net:hasStructure "unknown" .
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:atomClass_system_s4 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_SolarSystem_blankNode ;
-    net:coverBaseNode :leaf_system_s4 ;
-    net:coverNode :leaf_system_s4 ;
-    net:hasClassName "system" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "system" ;
-    net:hasStructure "unknown" .
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+net:atomProperty_discover_d2 a net:Atom_Property_Net,
         net:Deprecated_Net ;
-    :role_ARG0 net:atomClass_object_o ;
-    :role_ARG1 net:atomClass_sun_s ;
-    net:coverBaseNode :leaf_orbit-01_o2 ;
-    net:coverNode :leaf_orbit-01_o2 ;
-    net:hasNaming "orbit" ;
-    net:hasPropertyName "orbit" ;
-    net:hasPropertyName01 "orbiting" ;
-    net:hasPropertyName10 "orbit-by" ;
-    net:hasPropertyName12 "orbit-of" ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_discover-01_d2 ;
+    net:coverNode :leaf_discover-01_d2 ;
+    net:hasNaming "discover" ;
+    net:hasPropertyName "discover" ;
+    net:hasPropertyName01 "discovering" ;
+    net:hasPropertyName10 "discover-by" ;
+    net:hasPropertyName12 "discover-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_object_o,
-        :leaf_sun_s .
+    net:targetArgumentNode :leaf_population_p3 .
 
-net:compositeClass_dwarf-planet_p2 a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_dwarf_d2 ;
-    net:composeFrom net:atomClass_dwarf_d2,
-        net:atomClass_planet_p2 ;
+net:individual_Neptunian_p2 a net:Individual_Net ;
+    :role_name net:value_Neptunian_blankNode ;
     net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_dwarf_d2,
-        :leaf_planet_p2 ;
-    net:hasClassType sys:Entity ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Neptunian" ;
     net:hasMotherClassNet net:atomClass_planet_p2 ;
-    net:hasNaming "dwarf-planet" ;
+    net:hasNaming "Neptunian" ;
     net:hasStructure "unknown" .
 
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-net:value_SolarSystem_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_SolarSystem ;
-    net:hasNaming "SolarSystem" ;
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_belt_b,
+        net:individual_KuiperBelt_b ;
+    :role_op2 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:value_KuiperBelt_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_KuiperBelt ;
+    net:hasNaming "KuiperBelt" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "SolarSystem" .
+    net:hasValueLabel "KuiperBelt" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> a ns3:body ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
-    rdfs:subClassOf :AMR_Linked_Data .
+net:value_Neptunian_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Neptunian ;
+    net:hasNaming "Neptunian" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Neptunian" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> a ns3:object ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> a ns2:disc ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> a ns3:object ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> a ns2:object ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptunian" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:have-degree-91 a ns21:Frame ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> a ns2:population ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:object a ns21:Concept ;
+ns2:beyond a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:small a ns21:Concept ;
+ns2:population a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:and a ns21:Concept ;
+ns3:and a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1394,143 +1402,171 @@ ns21:and a ns21:Concept ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_and_a a :AMR_Leaf ;
-    :edge_a_h :leaf_have-degree-91_h ;
-    :edge_a_r :leaf_remain-01_r ;
-    :hasConcept :concept_and ;
-    :hasVariable :variable_a .
-
-:leaf_have-degree-91_h a :AMR_Leaf ;
-    :edge_h_l :leaf_large_l ;
-    :edge_h_m :leaf_most_m ;
-    :edge_h_o :leaf_object_o ;
-    :edge_h_p :leaf_planet_p ;
-    :hasConcept :concept_have-degree-91 ;
-    :hasVariable :variable_h .
-
-:leaf_large_l a :AMR_Leaf ;
-    :hasConcept :concept_large ;
-    :hasVariable :variable_l .
-
-:leaf_more_m2 a :AMR_Leaf ;
-    :hasConcept :concept_more ;
-    :hasVariable :variable_m2 .
+:leaf_beyond_b2 a :AMR_Leaf ;
+    :edge_b2_a2 :leaf_and_a2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b2 .
 
 :leaf_most_m a :AMR_Leaf ;
     :hasConcept :concept_most ;
     :hasVariable :variable_m .
 
-:leaf_planet_p a :AMR_Leaf ;
-    :edge_p_quant_8 :value_8 ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p .
-
-:leaf_remain-01_r a :AMR_Leaf ;
-    :edge_r_a2 :leaf_and_a2 ;
-    :hasConcept :concept_remain-01 ;
-    :hasVariable :variable_r .
-
-:leaf_small_s2 a :AMR_Leaf ;
-    :hasConcept :concept_small ;
-    :hasVariable :variable_s2 .
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
 
 :phenomena_conjunction_and a owl:Class ;
     rdfs:subClassOf :phenomena_conjunction ;
     :hasConceptLink "and" ;
     :label "conjunction-AND" .
 
-:phenomena_degree a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena ;
-    :hasConceptLink "have-degree-91" ;
-    :label "degree" .
-
 :phenomena_modality a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena .
 
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-net:Individual_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
 net:Net_Structure a owl:Class ;
     rdfs:label "Semantic Net Structure" ;
     rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
 
-net:atomClass_object_o a net:Atom_Class_Net,
+net:atomClass_belt_b a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_KuiperBelt_blankNode ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasClassName "belt" ;
+    net:hasNaming "belt" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_disc_d a net:Atom_Class_Net,
         net:Class_Net ;
-    net:coverBaseNode :leaf_object_o ;
-    net:coverNode :leaf_object_o ;
-    net:hasClassName "object" ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d ;
+    net:hasClassName "disc" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "object" ;
+    net:hasNaming "disc" ;
     net:hasStructure "unknown" .
 
-net:atomClass_object_o3 a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_object_o3 ;
-    net:coverNode :leaf_object_o3 ;
-    net:hasClassName "object" ;
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Neptunian_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "object" ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "population" ;
     net:hasStructure "unknown" .
 
-net:compositeClass_small-body_b a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_small_s3 ;
-    net:composeFrom net:atomClass_body_b,
-        net:atomClass_small_s3 ;
-    net:coverBaseNode :leaf_body_b ;
-    net:coverNode :leaf_body_b,
-        :leaf_small_s3 ;
+net:atomProperty_compose_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_population_p,
+        net:compositeClass_object-population_p ;
+    :role_ARG2 net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_ice_ii,
+        :leaf_population_p .
+
+net:atomProperty_lie_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_beyond_b3 ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_lie-07_l ;
+    net:hasNaming "lie" ;
+    net:hasPropertyName "lie" ;
+    net:hasPropertyName01 "lieing" ;
+    net:hasPropertyName10 "lie-by" ;
+    net:hasPropertyName12 "lie-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_beyond_b3 .
+
+net:compositeClass_object-population_p a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_object_o,
+        :leaf_population_p ;
     net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_body_b ;
-    net:hasNaming "small-body" ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "object-population" ;
     net:hasStructure "unknown" .
 
 net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-ns21:Frame a ns21:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Frame" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:leaf_and_a2 a :AMR_Leaf ;
-    :edge_a2_b :leaf_body_b ;
-    :edge_a2_o3 :leaf_object_o3 ;
-    :edge_a2_p2 :leaf_planet_p2 ;
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_a2 :leaf_and_a2 ;
+    :edge_a_p3 :leaf_population_p3 ;
     :hasConcept :concept_and ;
-    :hasVariable :variable_a2 .
+    :hasVariable :variable_a .
 
-:leaf_object_o3 a :AMR_Leaf ;
-    :hasConcept :concept_object ;
-    :hasVariable :variable_o3 .
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
 
-:leaf_sun_s a :AMR_Leaf ;
-    :hasConcept :concept_sun ;
-    :hasVariable :variable_s .
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
 
-net:Deprecated_Net a owl:Class ;
+net:Individual_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Phenomena_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+net:atomClass_beyond_b3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_beyond_b3 ;
+    net:coverNode :leaf_beyond_b3 ;
+    net:hasClassName "beyond" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "beyond" ;
+    net:hasStructure "unknown" .
 
-net:atomClass_planet_p2 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_dwarf_d2 ;
-    net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_planet_p2 ;
-    net:hasClassName "planet" ;
+net:atomClass_ice_ii a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_ice_ii ;
+    net:coverNode :leaf_ice_ii ;
+    net:hasClassName "ice" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
+    net:hasNaming "ice" ;
     net:hasStructure "unknown" .
 
 net:typeProperty a owl:AnnotationProperty ;
@@ -1542,42 +1578,29 @@ net:typeProperty a owl:AnnotationProperty ;
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-:leaf_object_o a :AMR_Leaf ;
-    :hasConcept :concept_object ;
-    :hasVariable :variable_o .
-
-:leaf_planet_p2 a :AMR_Leaf ;
-    :edge_p2_d2 :leaf_dwarf_d2 ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p2 .
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_belt_b ;
+    :edge_a2_d :leaf_disc_d ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
 
-sys:Out_Structure a owl:Class ;
-    rdfs:label "Output Ontology Structure" .
+:leaf_belt_b a :AMR_Leaf ;
+    :edge_b_name_KuiperBelt :value_KuiperBelt ;
+    :hasConcept :concept_belt ;
+    :hasVariable :variable_b .
 
-net:atomClass_body_b a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_small_s3 ;
-    net:coverBaseNode :leaf_body_b ;
-    net:coverNode :leaf_body_b ;
-    net:hasClassName "body" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "body" ;
-    net:hasStructure "unknown" .
+:leaf_compose-01_c a :AMR_Leaf ;
+    :edge_c_ii :leaf_ice_ii ;
+    :edge_c_p :leaf_population_p ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c .
 
-net:atomClass_dwarf_d2 a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_dwarf_d2 ;
-    net:coverNode :leaf_dwarf_d2 ;
-    net:hasClassName "dwarf" ;
-    net:hasNaming "dwarf" ;
-    net:hasStructure "unknown" .
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
 
-net:atomClass_small_s3 a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_small_s3 ;
-    net:coverNode :leaf_small_s3 ;
-    net:hasClassName "small" ;
-    net:hasNaming "small" ;
-    net:hasStructure "unknown" .
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
 
 net:netProperty a owl:AnnotationProperty ;
     rdfs:label "netProperty" .
@@ -1585,29 +1608,28 @@ net:netProperty a owl:AnnotationProperty ;
 :AMR_ObjectProperty a owl:ObjectProperty ;
     rdfs:subPropertyOf owl:topObjectProperty .
 
-:AMR_Predicat_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Structure a owl:Class .
 
-:leaf_dwarf_d2 a :AMR_Leaf ;
-    :hasConcept :concept_dwarf ;
-    :hasVariable :variable_d2 .
+:leaf_beyond_b3 a :AMR_Leaf ;
+    :edge_b3_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b3 .
 
-:leaf_orbit-01_o2 a :AMR_Leaf ;
-    :edge_o2_o :leaf_object_o ;
-    :edge_o2_s :leaf_sun_s ;
-    :hasConcept :concept_orbit-01 ;
-    :hasVariable :variable_o2 .
+:leaf_discover-01_d2 a :AMR_Leaf ;
+    :edge_d2_p3 :leaf_population_p3 ;
+    :hasConcept :concept_discover-01 ;
+    :hasVariable :variable_d2 .
 
-:leaf_small_s3 a :AMR_Leaf ;
-    :hasConcept :concept_small ;
-    :hasVariable :variable_s3 .
+:leaf_ice_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :hasConcept :concept_ice ;
+    :hasVariable :variable_ii .
 
-:leaf_system_s4 a :AMR_Leaf ;
-    :edge_s4_name_SolarSystem :value_SolarSystem ;
-    :hasConcept :concept_system ;
-    :hasVariable :variable_s4 .
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_a :leaf_and_a ;
+    :edge_l_b3 :leaf_beyond_b3 ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
 
 :role_ARG1 a owl:Class,
         net:Relation ;
@@ -1617,30 +1639,88 @@ net:netProperty a owl:AnnotationProperty ;
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
-net:Atom_Property_Net a owl:Class ;
-    rdfs:subClassOf net:Property_Net .
+net:atomClass_population_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_population_p3 ;
+    net:hasClassName "population" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "population" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sednoid_s2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sednoid_s2 ;
+    net:coverNode :leaf_sednoid_s2 ;
+    net:hasClassName "sednoid" ;
+    net:hasNaming "sednoid" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_sednoid-population_p3 a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:composeFrom net:atomClass_population_p3,
+        net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_population_p3,
+        :leaf_sednoid_s2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p3 ;
+    net:hasNaming "sednoid-population" ;
+    net:hasStructure "unknown" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
 rdf:Property a owl:Class .
 
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:leaf_body_b a :AMR_Leaf ;
-    :edge_b_s3 :leaf_small_s3 ;
-    :hasConcept :concept_body ;
-    :hasVariable :variable_b .
+:leaf_sednoid_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sednoid ;
+    :hasVariable :variable_s2 .
 
-sys:Out_ObjectProperty a owl:ObjectProperty .
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-ns11:FrameRole a ns21:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
 :AMR_Term_Concept a owl:Class ;
     rdfs:subClassOf :AMR_Concept .
 
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Neptunian :value_Neptunian ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_a2 :leaf_and_a2 ;
+    :edge_p_o :leaf_object_o ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
@@ -1648,17 +1728,32 @@ net:has_object a owl:AnnotationProperty ;
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_population_p3 a :AMR_Leaf ;
+    :edge_p3_b2 :leaf_beyond_b2 ;
+    :edge_p3_s2 :leaf_sednoid_s2 ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p3 .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_AnnotationProperty a owl:AnnotationProperty .
 
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-net:Relation a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
-
 net:Atom_Class_Net a owl:Class ;
     rdfs:subClassOf net:Class_Net .
 
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
index b156ba26f025ebf39fb4d2ceeef4395938fc09ce..413f41f381dbe5002fff76199166695e3a62bad8 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -2,65 +2,73 @@
 @prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
 @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
 @prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
-@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
-@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 @prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
-ns21:Concept a rdfs:Class,
+ns3:Concept a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Concept" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:Role a rdfs:Class,
+ns3:Role a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Role" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
-    ns21:hasSentence "The sun is a star." ;
-    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
 
-<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
-    ns21:hasSentence "Earth is a planet." ;
-    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns11:direct-02.ARG1 a ns11:FrameRole .
+ns11:compose-01.ARG1 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG1 a ns11:FrameRole .
+ns11:compose-01.ARG2 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG2 a ns11:FrameRole .
+ns11:discover-01.ARG1 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG3 a ns11:FrameRole .
+ns11:lie-07.ARG1 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG5 a ns11:FrameRole .
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:new-01.ARG1 a ns11:FrameRole .
 
 ns11:orbit-01.ARG0 a ns11:FrameRole .
 
-ns11:orbit-01.ARG1 a ns11:FrameRole .
+ns11:scatter-01.ARG1 a ns11:FrameRole .
+
+ns11:transpire-01.ARG0 a ns11:FrameRole .
+
+ns11:transpire-01.ARG1 a ns11:FrameRole .
 
-ns11:remain-01.ARG1 a ns11:FrameRole .
+ns2:consist a ns3:Role .
 
-ns3:domain a ns21:Role,
+ns2:domain a ns3:Role,
         owl:AnnotationProperty,
         owl:NamedIndividual .
 
-ns3:mod a ns21:Role .
+ns2:location a ns3:Role .
 
-ns3:op1 a ns21:Role .
+ns2:mod a ns3:Role .
 
-ns3:op2 a ns21:Role .
+ns2:op1 a ns3:Role .
 
-ns3:op3 a ns21:Role .
+ns2:op2 a ns3:Role .
 
-ns21:hasID a owl:AnnotationProperty .
+ns2:quant a ns3:Role .
 
-ns21:hasSentence a owl:AnnotationProperty .
+ns3:hasID a owl:AnnotationProperty .
 
-ns21:root a owl:AnnotationProperty .
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
 
 <https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
     owl:versionIRI :0.1 .
@@ -74,93 +82,95 @@ ns21:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Structure .
 
 :edge_a2_b a :AMR_Edge ;
-    :hasAmrRole :role_op3 ;
-    :hasRoleID "op3" .
-
-:edge_a2_o3 a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_a2_p2 a :AMR_Edge ;
+:edge_a2_d a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_a_h a :AMR_Edge ;
+:edge_a_a2 a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_a_r a :AMR_Edge ;
+:edge_a_p3 a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_b_s3 a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_b2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
 
-:edge_d_o2 a :AMR_Edge ;
+:edge_b_name_KuiperBelt a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_c_ii a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_p a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_h2_m2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG3 ;
-    :hasRoleID "ARG3" .
-
-:edge_h2_o3 a :AMR_Edge ;
+:edge_d2_p3 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_h2_s2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_h_l a :AMR_Edge ;
+:edge_l_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b3 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_h_m a :AMR_Edge ;
-    :hasAmrRole :role_ARG3 ;
-    :hasRoleID "ARG3" .
-
-:edge_h_o a :AMR_Edge ;
-    :hasAmrRole :role_ARG5 ;
-    :hasRoleID "ARG5" .
-
-:edge_h_p a :AMR_Edge ;
+:edge_n3_d2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_o2_o a :AMR_Edge ;
+:edge_o2_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_o2_s a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_p2_name_Neptunian a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p2_d2 a :AMR_Edge ;
+:edge_p3_b2 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_p3_s2 a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
-:edge_p9_ARG0_s4 a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_p_a2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_p_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
 
-:edge_p9_ARG1_b a :AMR_Edge ;
+:edge_s_d a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_p_quant_8 a :AMR_Edge ;
-    :hasAmrRole :role_quant ;
-    :hasRoleID "quant" .
+:edge_t_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
 
-:edge_r_a2 a :AMR_Edge ;
+:edge_t_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_s4_name_SolarSystem a :AMR_Edge ;
-    :hasAmrRole :role_name ;
-    :hasRoleID "name" .
-
 :fromAmrLkFramerole a owl:AnnotationProperty ;
     rdfs:subPropertyOf :fromAmrLk .
 
@@ -233,30 +243,38 @@ ns21:root a owl:AnnotationProperty .
 :label a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_direct-02_d a :AMR_Leaf ;
-    :edge_d_o2 :leaf_orbit-01_o2 ;
-    :hasConcept :concept_direct-02 ;
-    :hasVariable :variable_d .
+:leaf_compose-01_c a :AMR_Leaf ;
+    :edge_c_ii :leaf_ice_ii ;
+    :edge_c_p :leaf_population_p ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c .
+
+:leaf_new-01_n3 a :AMR_Leaf ;
+    :edge_n3_d2 :leaf_discover-01_d2 ;
+    :hasConcept :concept_new-01 ;
+    :hasVariable :variable_n3 .
 
-:leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_s4 :leaf_system_s4 ;
-    :edge_p9_ARG1_b :leaf_body_b ;
-    :hasConcept :concept_part ;
-    :hasVariable :variable_p9 ;
-    :isReifiedLeaf true .
+:leaf_scatter-01_s a :AMR_Leaf ;
+    :edge_s_d :leaf_disc_d ;
+    :hasConcept :concept_scatter-01 ;
+    :hasVariable :variable_s .
 
-:leaf_have-degree-91_h2 a :AMR_Leaf ;
-    :edge_h2_m2 :leaf_more_m2 ;
-    :edge_h2_o3 :leaf_object_o3 ;
-    :edge_h2_s2 :leaf_small_s2 ;
-    :hasConcept :concept_have-degree-91 ;
-    :hasVariable :variable_h2 .
+:leaf_transpire-01_t a :AMR_Leaf ;
+    :edge_t_o :leaf_object_o ;
+    :edge_t_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_transpire-01 ;
+    :hasVariable :variable_t .
 
 :phenomena_conjunction_or a owl:Class ;
     rdfs:subClassOf :phenomena_conjunction ;
     :hasConceptLink "or" ;
     :label "conjunction-OR" .
 
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
 :phenomena_modality_obligation a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "obligate-01" ;
@@ -317,10 +335,18 @@ ns21:root a owl:AnnotationProperty .
     :hasReification false ;
     :hasRelationName "quant" .
 
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
 :role_ARG4 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG4" .
 
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
 :role_ARG6 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG6" .
@@ -358,6 +384,10 @@ ns21:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
 :role_op4 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op4" .
@@ -395,11 +425,11 @@ ns21:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:root_WikiAbstract-SolarSystem-02 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> ;
-    :hasRootLeaf :leaf_and_a ;
-    :hasSentenceID "WikiAbstract-SolarSystem-02" ;
-    :hasSentenceStatement "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." .
+:root_WikiAbstract-SolarSystem-12 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> ;
+    :hasRootLeaf :leaf_lie-07_l ;
+    :hasSentenceID "WikiAbstract-SolarSystem-12" ;
+    :hasSentenceStatement "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -651,277 +681,254 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> a ns11:direct-02 ;
-    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> a ns11:have-degree-91 ;
-    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
-    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
-    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> a ns11:new-01 ;
+    ns11:new-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> a ns21:AMR ;
-    ns21:has-id "WikiAbstract-SolarSystem-02" ;
-    ns21:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
-    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-12" ;
+    ns3:has-sentence "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> a ns11:scatter-01 ;
+    ns11:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> a ns3:system ;
-    rdfs:label "Solar System" ;
-    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> a ns11:transpire-01 ;
+    ns11:transpire-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    ns11:transpire-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
 <http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
 
-ns21:AMR a owl:Class ;
+ns3:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:NamedEntity a ns21:Concept,
+ns3:NamedEntity a ns3:Concept,
         owl:Class,
         owl:NamedIndividual ;
     rdfs:label "AMR-EntityType",
         "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_body rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:body ;
-    :label "body" .
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:belt ;
+    :label "belt" .
 
-:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:direct-02 ;
-    :label "direct-02" .
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:compose-01 ;
+    :label "compose-01" .
 
-:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:dwarf ;
-    :label "dwarf" .
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:disc ;
+    :label "disc" .
 
-:concept_large rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:large ;
-    :label "large" .
+:concept_discover-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:discover-01 ;
+    :label "discover-01" .
 
-:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:more ;
-    :label "more" .
+:concept_ice rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:ice ;
+    :label "ice" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:lie-07 ;
+    :label "lie-07" .
 
 :concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:most ;
+    :fromAmrLk ns3:most ;
     :label "most" .
 
+:concept_new-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:new-01 ;
+    :label "new-01" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
 :concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
     :fromAmrLk ns11:orbit-01 ;
     :label "orbit-01" .
 
-:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:part ;
-    :isReifiedConcept true ;
-    :label "hasPart" .
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
 
-:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:remain-01 ;
-    :label "remain-01" .
+:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:scatter-01 ;
+    :label "scatter-01" .
 
-:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:sun ;
-    :label "sun" .
+:concept_sednoid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sednoid ;
+    :label "sednoid" .
 
-:concept_system rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:system ;
-    :label "system" .
+:concept_transpire-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:transpire-01 ;
+    :label "transpire-01" .
 
 :leaf_and_a a :AMR_Leaf ;
-    :edge_a_h :leaf_have-degree-91_h ;
-    :edge_a_r :leaf_remain-01_r ;
+    :edge_a_a2 :leaf_and_a2 ;
+    :edge_a_p3 :leaf_population_p3 ;
     :hasConcept :concept_and ;
     :hasVariable :variable_a .
 
-:leaf_and_a2 a :AMR_Leaf ;
-    :edge_a2_b :leaf_body_b ;
-    :edge_a2_o3 :leaf_object_o3 ;
-    :edge_a2_p2 :leaf_planet_p2 ;
-    :hasConcept :concept_and ;
-    :hasVariable :variable_a2 .
+:leaf_belt_b a :AMR_Leaf ;
+    :edge_b_name_KuiperBelt :value_KuiperBelt ;
+    :hasConcept :concept_belt ;
+    :hasVariable :variable_b .
+
+:leaf_beyond_b2 a :AMR_Leaf ;
+    :edge_b2_a2 :leaf_and_a2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b2 .
+
+:leaf_beyond_b3 a :AMR_Leaf ;
+    :edge_b3_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b3 .
 
-:leaf_dwarf_d2 a :AMR_Leaf ;
-    :hasConcept :concept_dwarf ;
+:leaf_discover-01_d2 a :AMR_Leaf ;
+    :edge_d2_p3 :leaf_population_p3 ;
+    :hasConcept :concept_discover-01 ;
     :hasVariable :variable_d2 .
 
-:leaf_have-degree-91_h a :AMR_Leaf ;
-    :edge_h_l :leaf_large_l ;
-    :edge_h_m :leaf_most_m ;
-    :edge_h_o :leaf_object_o ;
-    :edge_h_p :leaf_planet_p ;
-    :hasConcept :concept_have-degree-91 ;
-    :hasVariable :variable_h .
+:leaf_ice_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :hasConcept :concept_ice ;
+    :hasVariable :variable_ii .
 
-:leaf_large_l a :AMR_Leaf ;
-    :hasConcept :concept_large ;
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_a :leaf_and_a ;
+    :edge_l_b3 :leaf_beyond_b3 ;
+    :hasConcept :concept_lie-07 ;
     :hasVariable :variable_l .
 
-:leaf_more_m2 a :AMR_Leaf ;
-    :hasConcept :concept_more ;
-    :hasVariable :variable_m2 .
-
 :leaf_most_m a :AMR_Leaf ;
     :hasConcept :concept_most ;
     :hasVariable :variable_m .
 
 :leaf_orbit-01_o2 a :AMR_Leaf ;
-    :edge_o2_o :leaf_object_o ;
-    :edge_o2_s :leaf_sun_s ;
+    :edge_o2_p2 :leaf_planet_p2 ;
     :hasConcept :concept_orbit-01 ;
     :hasVariable :variable_o2 .
 
-:leaf_planet_p a :AMR_Leaf ;
-    :edge_p_quant_8 :value_8 ;
-    :hasConcept :concept_planet ;
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_a2 :leaf_and_a2 ;
+    :edge_p_o :leaf_object_o ;
+    :hasConcept :concept_population ;
     :hasVariable :variable_p .
 
-:leaf_planet_p2 a :AMR_Leaf ;
-    :edge_p2_d2 :leaf_dwarf_d2 ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p2 .
-
-:leaf_remain-01_r a :AMR_Leaf ;
-    :edge_r_a2 :leaf_and_a2 ;
-    :hasConcept :concept_remain-01 ;
-    :hasVariable :variable_r .
-
-:leaf_small_s2 a :AMR_Leaf ;
-    :hasConcept :concept_small ;
+:leaf_sednoid_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sednoid ;
     :hasVariable :variable_s2 .
 
-:leaf_small_s3 a :AMR_Leaf ;
-    :hasConcept :concept_small ;
-    :hasVariable :variable_s3 .
-
-:leaf_sun_s a :AMR_Leaf ;
-    :hasConcept :concept_sun ;
-    :hasVariable :variable_s .
-
-:leaf_system_s4 a :AMR_Leaf ;
-    :edge_s4_name_SolarSystem :value_SolarSystem ;
-    :hasConcept :concept_system ;
-    :hasVariable :variable_s4 .
-
 :phenomena_conjunction_and a owl:Class ;
     rdfs:subClassOf :phenomena_conjunction ;
     :hasConceptLink "and" ;
     :label "conjunction-AND" .
 
-:phenomena_degree a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena ;
-    :hasConceptLink "have-degree-91" ;
-    :label "degree" .
-
-:role_ARG5 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG5" .
-
-:role_name a owl:Class ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
-
-:role_op3 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op3" .
-
 :role_quant a owl:Class ;
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "quant" .
 
-:value_8 a :AMR_Value ;
-    rdfs:label "8" .
+:value_KuiperBelt a :AMR_Value ;
+    rdfs:label "KuiperBelt" .
 
-:value_SolarSystem a :AMR_Value ;
-    rdfs:label "SolarSystem" .
+:value_Neptunian a :AMR_Value ;
+    rdfs:label "Neptunian" .
 
 :variable_a a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
     :label "a" .
 
 :variable_a2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
     :label "a2" .
 
 :variable_b a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
-    :label "b" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    :label "b" ;
+    :name "Kuiper Belt" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    :label "b2" .
+
+:variable_b3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
+    :label "b3" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> ;
+    :label "c" .
 
 :variable_d a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
     :label "d" .
 
 :variable_d2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
     :label "d2" .
 
-:variable_h a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
-    :label "h" .
-
-:variable_h2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> ;
-    :label "h2" .
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
+    :label "ii" .
 
 :variable_l a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> ;
     :label "l" .
 
 :variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
     :label "m" .
 
-:variable_m2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
-    :label "m2" .
+:variable_n3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> ;
+    :label "n3" .
 
 :variable_o a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
     :label "o" .
 
 :variable_o2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
     :label "o2" .
 
-:variable_o3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
-    :label "o3" .
-
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
     :label "p" .
 
 :variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
-    :label "p2" .
-
-:variable_p9 a ns3:part,
-        :AMR_Variable ;
-    :isReifiedVariable true ;
-    :label "p9" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    :label "p2" ;
+    :name "Neptunian" .
 
-:variable_r a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
-    :label "r" .
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    :label "p3" .
 
 :variable_s a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> ;
     :label "s" .
 
 :variable_s2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
     :label "s2" .
 
-:variable_s3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
-    :label "s3" .
-
-:variable_s4 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> ;
-    :label "s4" ;
-    :name "Solar System" .
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> ;
+    :label "t" .
 
 sys:Degree a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
@@ -947,135 +954,127 @@ net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> a ns21:and ;
-    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
-    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> a ns21:and ;
-    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
-    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
-    ns3:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> a ns2:belt ;
+    rdfs:label "Kuiper Belt" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> a ns3:dwarf ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> a ns11:have-degree-91 ;
-    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
-    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
-    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
-    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> a ns3:large ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> a ns11:discover-01 ;
+    ns11:discover-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> a ns21:most ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> a ns2:ice ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> a ns21:more ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> a ns11:orbit-01 ;
-    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
-    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> a ns3:most ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> a <http://amr.isi.edu/entity-types#planet> ;
-    ns3:quant "8" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> a <http://amr.isi.edu/entity-types#planet> ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> a ns2:population ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> a ns11:remain-01 ;
-    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> a ns2:sednoid ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> a ns3:sun ;
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> a ns3:small ;
+ns11:compose-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> a ns3:small ;
+ns11:discover-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:direct-02 a ns21:Frame ;
+ns11:lie-07 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:orbit-01 a ns21:Frame ;
+ns11:new-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:remain-01 a ns21:Frame ;
+ns11:orbit-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:body a ns21:Concept ;
+ns11:scatter-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:dwarf a ns21:Concept ;
+ns11:transpire-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:large a ns21:Concept ;
+ns2:belt a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:part a ns21:Role ;
+ns2:disc a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:sun a ns21:Concept ;
+ns2:ice a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:system a ns21:Concept ;
+ns2:object a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:more a ns21:Concept ;
+ns2:sednoid a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:most a ns21:Concept ;
+ns3:most a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :concept_and rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns21:and ;
+    :fromAmrLk ns3:and ;
     :hasPhenomenaLink :phenomena_conjunction_and ;
     :label "and" .
 
-:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns11:have-degree-91 ;
-    :hasPhenomenaLink :phenomena_degree ;
-    :label "have-degree-91" .
-
-:concept_object rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:object ;
-    :label "object" .
-
-:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
-    :label "planet" .
+:concept_beyond rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:beyond ;
+    :label "beyond" .
 
-:concept_small rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:small ;
-    :label "small" .
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
 
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_body_b a :AMR_Leaf ;
-    :edge_b_s3 :leaf_small_s3 ;
-    :hasConcept :concept_body ;
-    :hasVariable :variable_b .
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
 
 :leaf_object_o a :AMR_Leaf ;
     :hasConcept :concept_object ;
     :hasVariable :variable_o .
 
-:leaf_object_o3 a :AMR_Leaf ;
-    :hasConcept :concept_object ;
-    :hasVariable :variable_o3 .
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Neptunian :value_Neptunian ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_population_p3 a :AMR_Leaf ;
+    :edge_p3_b2 :leaf_beyond_b2 ;
+    :edge_p3_s2 :leaf_sednoid_s2 ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p3 .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1092,10 +1091,6 @@ ns21:most a ns21:Concept ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG2" .
 
-:role_ARG3 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG3" .
-
 :role_mod a owl:Class ;
     rdfs:subClassOf :AMR_NonCore_Role ;
     :getDirectPropertyName "hasFeature"^^xsd:string ;
@@ -1106,9 +1101,9 @@ ns21:most a ns21:Concept ;
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
-:role_op1 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
 
 :role_op2 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
@@ -1125,29 +1120,28 @@ net:Property_Net a owl:Class ;
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> a ns3:body ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> a ns3:object ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> a ns2:disc ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> a ns3:object ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> a ns2:object ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptunian" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:have-degree-91 a ns21:Frame ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> a ns2:population ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:object a ns21:Concept ;
+ns2:beyond a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:small a ns21:Concept ;
+ns2:population a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:and a ns21:Concept ;
+ns3:and a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1172,6 +1166,12 @@ ns21:and a ns21:Concept ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_belt_b ;
+    :edge_a2_d :leaf_disc_d ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
 :phenomena_modality a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena .
 
@@ -1186,15 +1186,18 @@ net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-ns21:Frame a ns21:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Frame" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
 net:typeProperty a owl:AnnotationProperty ;
     rdfs:label "type property" .
 
@@ -1213,9 +1216,6 @@ net:netProperty a owl:AnnotationProperty ;
 :AMR_ObjectProperty a owl:ObjectProperty ;
     rdfs:subPropertyOf owl:topObjectProperty .
 
-:AMR_Predicat_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Structure a owl:Class .
 
 :role_ARG1 a owl:Class ;
@@ -1225,16 +1225,19 @@ net:netProperty a owl:AnnotationProperty ;
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 rdf:Property a owl:Class .
 
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-ns11:FrameRole a ns21:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
 :AMR_Term_Concept a owl:Class ;
     rdfs:subClassOf :AMR_Concept .
@@ -1249,6 +1252,12 @@ net:has_object a owl:AnnotationProperty ;
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_AnnotationProperty a owl:AnnotationProperty .
 
 :AMR_Core_Role a owl:Class ;
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
index d61de8887a4679a62bcf6e174d161d27c31eeb7a..47c7e918f49caac8df48762d3103b07c50beb44e 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -2,65 +2,73 @@
 @prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
 @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
 @prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
-@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
-@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 @prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
-ns21:Concept a rdfs:Class,
+ns3:Concept a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Concept" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:Role a rdfs:Class,
+ns3:Role a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Role" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
-    ns21:hasSentence "The sun is a star." ;
-    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
 
-<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
-    ns21:hasSentence "Earth is a planet." ;
-    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns11:direct-02.ARG1 a ns11:FrameRole .
+ns11:compose-01.ARG1 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG1 a ns11:FrameRole .
+ns11:compose-01.ARG2 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG2 a ns11:FrameRole .
+ns11:discover-01.ARG1 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG3 a ns11:FrameRole .
+ns11:lie-07.ARG1 a ns11:FrameRole .
 
-ns11:have-degree-91.ARG5 a ns11:FrameRole .
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:new-01.ARG1 a ns11:FrameRole .
 
 ns11:orbit-01.ARG0 a ns11:FrameRole .
 
-ns11:orbit-01.ARG1 a ns11:FrameRole .
+ns11:scatter-01.ARG1 a ns11:FrameRole .
+
+ns11:transpire-01.ARG0 a ns11:FrameRole .
 
-ns11:remain-01.ARG1 a ns11:FrameRole .
+ns11:transpire-01.ARG1 a ns11:FrameRole .
 
-ns3:domain a ns21:Role,
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
         owl:AnnotationProperty,
         owl:NamedIndividual .
 
-ns3:mod a ns21:Role .
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
 
-ns3:op1 a ns21:Role .
+ns2:op1 a ns3:Role .
 
-ns3:op2 a ns21:Role .
+ns2:op2 a ns3:Role .
 
-ns3:op3 a ns21:Role .
+ns2:quant a ns3:Role .
 
-ns21:hasID a owl:AnnotationProperty .
+ns3:hasID a owl:AnnotationProperty .
 
-ns21:hasSentence a owl:AnnotationProperty .
+ns3:hasSentence a owl:AnnotationProperty .
 
-ns21:root a owl:AnnotationProperty .
+ns3:root a owl:AnnotationProperty .
 
 <https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
     owl:versionIRI :0.1 .
@@ -74,93 +82,95 @@ ns21:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Structure .
 
 :edge_a2_b a :AMR_Edge ;
-    :hasAmrRole :role_op3 ;
-    :hasRoleID "op3" .
-
-:edge_a2_o3 a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_a2_p2 a :AMR_Edge ;
+:edge_a2_d a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_a_h a :AMR_Edge ;
+:edge_a_a2 a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_a_r a :AMR_Edge ;
+:edge_a_p3 a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_b_s3 a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_b2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
 
-:edge_d_o2 a :AMR_Edge ;
+:edge_b_name_KuiperBelt a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_c_ii a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_p a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_h2_m2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG3 ;
-    :hasRoleID "ARG3" .
-
-:edge_h2_o3 a :AMR_Edge ;
+:edge_d2_p3 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_h2_s2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_l_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
 
-:edge_h_l a :AMR_Edge ;
+:edge_l_b3 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_h_m a :AMR_Edge ;
-    :hasAmrRole :role_ARG3 ;
-    :hasRoleID "ARG3" .
-
-:edge_h_o a :AMR_Edge ;
-    :hasAmrRole :role_ARG5 ;
-    :hasRoleID "ARG5" .
-
-:edge_h_p a :AMR_Edge ;
+:edge_n3_d2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_o2_o a :AMR_Edge ;
+:edge_o2_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_o2_s a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_p2_name_Neptunian a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p2_d2 a :AMR_Edge ;
+:edge_p3_b2 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_p3_s2 a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
-:edge_p9_ARG0_s4 a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_p_a2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_p_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
 
-:edge_p9_ARG1_b a :AMR_Edge ;
+:edge_s_d a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_p_quant_8 a :AMR_Edge ;
-    :hasAmrRole :role_quant ;
-    :hasRoleID "quant" .
+:edge_t_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
 
-:edge_r_a2 a :AMR_Edge ;
+:edge_t_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_s4_name_SolarSystem a :AMR_Edge ;
-    :hasAmrRole :role_name ;
-    :hasRoleID "name" .
-
 :fromAmrLkFramerole a owl:AnnotationProperty ;
     rdfs:subPropertyOf :fromAmrLk .
 
@@ -238,6 +248,11 @@ ns21:root a owl:AnnotationProperty .
     :hasConceptLink "or" ;
     :label "conjunction-OR" .
 
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
 :phenomena_modality_obligation a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "obligate-01" ;
@@ -298,10 +313,18 @@ ns21:root a owl:AnnotationProperty .
     :hasReification false ;
     :hasRelationName "quant" .
 
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
 :role_ARG4 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG4" .
 
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
 :role_ARG6 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG6" .
@@ -339,6 +362,10 @@ ns21:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
 :role_op4 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op4" .
@@ -376,11 +403,11 @@ ns21:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:root_WikiAbstract-SolarSystem-02 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> ;
-    :hasRootLeaf :leaf_and_a ;
-    :hasSentenceID "WikiAbstract-SolarSystem-02" ;
-    :hasSentenceStatement "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." .
+:root_WikiAbstract-SolarSystem-12 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> ;
+    :hasRootLeaf :leaf_lie-07_l ;
+    :hasSentenceID "WikiAbstract-SolarSystem-12" ;
+    :hasSentenceStatement "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -462,54 +489,102 @@ net:Property_Axiom_Net a owl:Class ;
 net:Property_Direction a owl:Class ;
     rdfs:subClassOf net:Feature .
 
-net:Restriction_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
 net:abstractionClass a owl:AnnotationProperty ;
     rdfs:label "abstraction class" ;
     rdfs:subPropertyOf net:objectValue .
 
+net:atomClass_beyond_b2 a net:Atom_Class_Net ;
+    :role_op1 net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_beyond_b2 ;
+    net:coverNode :leaf_beyond_b2 ;
+    net:hasClassName "beyond" ;
+    net:hasNaming "beyond" ;
+    net:hasStructure "unknown" .
+
 net:atomOf a owl:AnnotationProperty ;
     rdfs:label "atom of" ;
     rdfs:subPropertyOf net:typeProperty .
 
-net:atomProperty_direct_d a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_orbit_o2,
-        net:atomProperty_orbit_o2 ;
-    net:coverBaseNode :leaf_direct-02_d ;
-    net:coverNode :leaf_direct-02_d ;
-    net:hasNaming "direct" ;
-    net:hasPropertyName "direct" ;
-    net:hasPropertyName01 "directing" ;
-    net:hasPropertyName10 "direct-by" ;
-    net:hasPropertyName12 "direct-of" ;
+net:atomProperty_new_n3 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_discover_d2,
+        net:atomProperty_discover_d2 ;
+    net:coverBaseNode :leaf_new-01_n3 ;
+    net:coverNode :leaf_new-01_n3 ;
+    net:hasNaming "new" ;
+    net:hasPropertyName "new" ;
+    net:hasPropertyName01 "newing" ;
+    net:hasPropertyName10 "new-by" ;
+    net:hasPropertyName12 "new-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_discover-01_d2 .
+
+net:atomProperty_scatter_s a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_scatter-01_s ;
+    net:coverNode :leaf_scatter-01_s ;
+    net:hasNaming "scatter" ;
+    net:hasPropertyName "scatter" ;
+    net:hasPropertyName01 "scattering" ;
+    net:hasPropertyName10 "scatter-by" ;
+    net:hasPropertyName12 "scatter-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_orbit-01_o2 .
-
-net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_system_s4,
-        net:individual_SolarSystem_s4 ;
-    :role_ARG1 net:atomClass_body_b,
-        net:compositeClass_small-body_b ;
-    net:coverBaseNode :leaf_hasPart_p9 ;
-    net:coverNode :leaf_hasPart_p9 ;
-    net:hasNaming "hasPart" ;
-    net:hasPropertyName "hasPart" ;
-    net:hasPropertyName01 "hasParting" ;
-    net:hasPropertyName10 "hasPart-by" ;
-    net:hasPropertyName12 "hasPart-of" ;
+    net:targetArgumentNode :leaf_disc_d .
+
+net:atomProperty_transpire_t a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:individual_Neptunian_p2 ;
+    net:coverBaseNode :leaf_transpire-01_t ;
+    net:coverNode :leaf_transpire-01_t ;
+    net:hasNaming "transpire" ;
+    net:hasPropertyName "transpire" ;
+    net:hasPropertyName01 "transpireing" ;
+    net:hasPropertyName10 "transpire-by" ;
+    net:hasPropertyName12 "transpire-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_body_b,
-        :leaf_system_s4 .
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_planet_p2 .
 
 net:atomType a owl:AnnotationProperty ;
     rdfs:label "atom type" ;
     rdfs:subPropertyOf net:objectType .
 
+net:compositeClass_object-population-compose-ice_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:composeFrom net:atomClass_ice_ii,
+        net:atomProperty_compose_c,
+        net:compositeClass_object-population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_compose-01_c,
+        :leaf_ice_ii,
+        :leaf_object_o,
+        :leaf_population_p ;
+    net:hasMotherClassNet net:compositeClass_object-population_p ;
+    net:hasNaming "object-population-compose-ice" ;
+    net:hasRestriction net:restriction_compose-ice_c ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_sednoid-population-lie-beyond_p3 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:composeFrom net:atomClass_beyond_b3,
+        net:atomProperty_lie_l,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_beyond_b3,
+        :leaf_lie-07_l,
+        :leaf_population_p3,
+        :leaf_sednoid_s2 ;
+    net:hasMotherClassNet net:compositeClass_sednoid-population_p3 ;
+    net:hasNaming "sednoid-population-lie-beyond" ;
+    net:hasRestriction net:restriction_lie-beyond_l ;
+    net:hasStructure "unknown" .
+
 net:entityClass a owl:AnnotationProperty ;
     rdfs:label "entity class" ;
     rdfs:subPropertyOf net:objectValue .
@@ -605,24 +680,24 @@ net:has_target a owl:AnnotationProperty ;
     rdfs:label "has target" ;
     rdfs:subPropertyOf net:has_relation_value .
 
-net:individual_dwarf_d2 a net:Individual_Net ;
-    net:composeFrom net:atomClass_dwarf_d2 ;
-    net:coverBaseNode :leaf_dwarf_d2 ;
-    net:coverNode :leaf_dwarf_d2 ;
+net:individual_object_o a net:Individual_Net ;
+    net:composeFrom net:atomClass_object_o ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
     net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "dwarf" ;
-    net:hasMotherClassNet net:atomClass_dwarf_d2 ;
-    net:hasNaming "dwarf" ;
+    net:hasIndividualLabel "object" ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object" ;
     net:hasStructure "unknown" .
 
-net:individual_small_s3 a net:Individual_Net ;
-    net:composeFrom net:atomClass_small_s3 ;
-    net:coverBaseNode :leaf_small_s3 ;
-    net:coverNode :leaf_small_s3 ;
+net:individual_sednoid_s2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_sednoid_s2 ;
+    net:coverNode :leaf_sednoid_s2 ;
     net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "small" ;
-    net:hasMotherClassNet net:atomClass_small_s3 ;
-    net:hasNaming "small" ;
+    net:hasIndividualLabel "sednoid" ;
+    net:hasMotherClassNet net:atomClass_sednoid_s2 ;
+    net:hasNaming "sednoid" ;
     net:hasStructure "unknown" .
 
 net:inverse_direction a owl:NamedIndividual .
@@ -649,27 +724,6 @@ net:modCat2 a owl:AnnotationProperty ;
 
 net:normal_direction a owl:NamedIndividual .
 
-net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
-    :role_op1 net:phenomena_degree_h ;
-    :role_op2 net:atomProperty_remain_r ;
-    net:coverBaseNode :leaf_and_a ;
-    net:coverNode :leaf_and_a ;
-    net:hasNaming "conjunction-AND" ;
-    net:hasPhenomenaRef "and" ;
-    net:hasPhenomenaType :phenomena_conjunction_and ;
-    net:hasStructure "unknown" .
-
-net:phenomena_degree_h2 a net:Phenomena_Net ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_ARG2 net:atomClass_small_s2 ;
-    :role_ARG3 net:atomProperty_more_m2 ;
-    net:coverBaseNode :leaf_have-degree-91_h2 ;
-    net:coverNode :leaf_have-degree-91_h2 ;
-    net:hasNaming "degree" ;
-    net:hasPhenomenaRef "have-degree-91" ;
-    net:hasPhenomenaType :phenomena_degree ;
-    net:hasStructure "unknown" .
-
 net:relationOf a owl:AnnotationProperty ;
     rdfs:label "relation of" ;
     rdfs:subPropertyOf net:typeProperty .
@@ -682,99 +736,101 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> a ns11:direct-02 ;
-    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> a ns11:have-degree-91 ;
-    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
-    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
-    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> a ns11:new-01 ;
+    ns11:new-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> a ns21:AMR ;
-    ns21:has-id "WikiAbstract-SolarSystem-02" ;
-    ns21:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
-    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-12" ;
+    ns3:has-sentence "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> a ns3:system ;
-    rdfs:label "Solar System" ;
-    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> a ns11:scatter-01 ;
+    ns11:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> a ns11:transpire-01 ;
+    ns11:transpire-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    ns11:transpire-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
 <http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
 
-ns21:AMR a owl:Class ;
+ns3:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:NamedEntity a ns21:Concept,
+ns3:NamedEntity a ns3:Concept,
         owl:Class,
         owl:NamedIndividual ;
     rdfs:label "AMR-EntityType",
         "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_body rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:body ;
-    :label "body" .
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:belt ;
+    :label "belt" .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:compose-01 ;
+    :label "compose-01" .
 
-:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:direct-02 ;
-    :label "direct-02" .
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:disc ;
+    :label "disc" .
 
-:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:dwarf ;
-    :label "dwarf" .
+:concept_discover-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:discover-01 ;
+    :label "discover-01" .
 
-:concept_large rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:large ;
-    :label "large" .
+:concept_ice rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:ice ;
+    :label "ice" .
 
-:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:more ;
-    :label "more" .
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:lie-07 ;
+    :label "lie-07" .
 
 :concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:most ;
+    :fromAmrLk ns3:most ;
     :label "most" .
 
+:concept_new-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:new-01 ;
+    :label "new-01" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
 :concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
     :fromAmrLk ns11:orbit-01 ;
     :label "orbit-01" .
 
-:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:part ;
-    :isReifiedConcept true ;
-    :label "hasPart" .
-
-:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:remain-01 ;
-    :label "remain-01" .
-
-:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:sun ;
-    :label "sun" .
-
-:concept_system rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:system ;
-    :label "system" .
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
 
-:role_ARG5 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG5" .
+:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:scatter-01 ;
+    :label "scatter-01" .
 
-:role_name a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
+:concept_sednoid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sednoid ;
+    :label "sednoid" .
 
-:role_op3 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op3" .
+:concept_transpire-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:transpire-01 ;
+    :label "transpire-01" .
 
 :role_quant a owl:Class,
         net:Relation ;
@@ -782,90 +838,86 @@ ns21:NamedEntity a ns21:Concept,
     :label "quant" .
 
 :variable_a a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
     :label "a" .
 
 :variable_a2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
     :label "a2" .
 
 :variable_b a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
-    :label "b" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    :label "b" ;
+    :name "Kuiper Belt" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    :label "b2" .
+
+:variable_b3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
+    :label "b3" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> ;
+    :label "c" .
 
 :variable_d a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
     :label "d" .
 
 :variable_d2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
     :label "d2" .
 
-:variable_h a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
-    :label "h" .
-
-:variable_h2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> ;
-    :label "h2" .
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
+    :label "ii" .
 
 :variable_l a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> ;
     :label "l" .
 
 :variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
     :label "m" .
 
-:variable_m2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
-    :label "m2" .
+:variable_n3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> ;
+    :label "n3" .
 
 :variable_o a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
     :label "o" .
 
 :variable_o2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
     :label "o2" .
 
-:variable_o3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
-    :label "o3" .
-
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
     :label "p" .
 
 :variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
-    :label "p2" .
-
-:variable_p9 a ns3:part,
-        :AMR_Variable ;
-    :isReifiedVariable true ;
-    :label "p9" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    :label "p2" ;
+    :name "Neptunian" .
 
-:variable_r a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
-    :label "r" .
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    :label "p3" .
 
 :variable_s a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> ;
     :label "s" .
 
 :variable_s2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
     :label "s2" .
 
-:variable_s3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
-    :label "s3" .
-
-:variable_s4 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> ;
-    :label "s4" ;
-    :name "Solar System" .
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> ;
+    :label "t" .
 
 sys:Degree a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
@@ -881,58 +933,18 @@ net:Axiom_Net a owl:Class ;
 net:Feature a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
-net:atomClass_large_l a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_large_l ;
-    net:coverNode :leaf_large_l ;
-    net:hasClassName "large" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "large" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_orbit_o2 a net:Atom_Class_Net,
-        net:Class_Net ;
-    :role_ARG0 net:atomClass_object_o ;
-    :role_ARG1 net:atomClass_sun_s ;
-    net:composeFrom net:atomProperty_orbit_o2 ;
-    net:coverBaseNode :leaf_orbit-01_o2 ;
-    net:coverNode :leaf_orbit-01_o2 ;
-    net:hasClassName "orbit" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "orbit" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_planet_p a net:Atom_Class_Net,
-        net:Class_Net ;
-    :role_quant net:value_8_blankNode ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_small_s2 a net:Atom_Class_Net,
+net:atomClass_discover_d2 a net:Atom_Class_Net,
         net:Class_Net ;
-    net:coverBaseNode :leaf_small_s2 ;
-    net:coverNode :leaf_small_s2 ;
-    net:hasClassName "small" ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:composeFrom net:atomProperty_discover_d2 ;
+    net:coverBaseNode :leaf_discover-01_d2 ;
+    net:coverNode :leaf_discover-01_d2 ;
+    net:hasClassName "discover" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "small" ;
+    net:hasNaming "discover" ;
     net:hasStructure "unknown" .
 
-net:atomProperty_more_m2 a net:Atom_Property_Net ;
-    net:coverBaseNode :leaf_more_m2 ;
-    net:coverNode :leaf_more_m2 ;
-    net:hasNaming "more" ;
-    net:hasPropertyName "more" ;
-    net:hasPropertyName01 "moreing" ;
-    net:hasPropertyName10 "more-by" ;
-    net:hasPropertyName12 "more-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" .
-
 net:atomProperty_most_m a net:Atom_Property_Net ;
     net:coverBaseNode :leaf_most_m ;
     net:coverNode :leaf_most_m ;
@@ -945,207 +957,190 @@ net:atomProperty_most_m a net:Atom_Property_Net ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" .
 
-net:atomProperty_remain_r a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_body_b,
-        net:atomClass_object_o3,
-        net:atomClass_planet_p2,
-        net:compositeClass_dwarf-planet_p2,
-        net:compositeClass_small-body_b,
-        net:phenomena_conjunction-AND_a2 ;
-    net:coverBaseNode :leaf_remain-01_r ;
-    net:coverNode :leaf_remain-01_r ;
-    net:hasNaming "remain" ;
-    net:hasPropertyName "remain" ;
-    net:hasPropertyName01 "remaining" ;
-    net:hasPropertyName10 "remain-by" ;
-    net:hasPropertyName12 "remain-of" ;
+net:atomProperty_orbit_o2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p2,
+        net:individual_Neptunian_p2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_and_a2 .
+    net:targetArgumentNode :leaf_planet_p2 .
 
 net:has_value a owl:AnnotationProperty ;
     rdfs:subPropertyOf net:netProperty .
 
-net:individual_SolarSystem_s4 a net:Individual_Net ;
-    :role_name net:value_SolarSystem_blankNode ;
-    net:coverBaseNode :leaf_system_s4 ;
-    net:coverNode :leaf_system_s4 ;
-    net:hasIndividualLabel "SolarSystem" ;
-    net:hasMotherClassNet net:atomClass_system_s4 ;
-    net:hasNaming "SolarSystem" ;
+net:individual_KuiperBelt_b a net:Individual_Net ;
+    :role_name net:value_KuiperBelt_blankNode ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasIndividualLabel "KuiperBelt" ;
+    net:hasMotherClassNet net:atomClass_belt_b ;
+    net:hasNaming "KuiperBelt" ;
     net:hasStructure "unknown" .
 
 net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
-    :role_op1 net:atomClass_object_o3 ;
-    :role_op2 net:atomClass_planet_p2,
-        net:compositeClass_dwarf-planet_p2 ;
-    :role_op3 net:atomClass_body_b,
-        net:compositeClass_small-body_b ;
-    net:coverBaseNode :leaf_and_a2 ;
-    net:coverNode :leaf_and_a2 ;
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_belt_b,
+        net:atomClass_disc_d,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_op2 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
     net:hasNaming "conjunction-AND" ;
     net:hasPhenomenaRef "and" ;
     net:hasPhenomenaType :phenomena_conjunction_and ;
     net:hasStructure "unknown" .
 
-net:phenomena_degree_h a net:Phenomena_Net ;
-    :role_ARG1 net:atomClass_planet_p ;
-    :role_ARG2 net:atomClass_large_l ;
-    :role_ARG3 net:atomProperty_most_m ;
-    :role_ARG5 net:atomClass_object_o ;
-    net:coverBaseNode :leaf_have-degree-91_h ;
-    net:coverNode :leaf_have-degree-91_h ;
-    net:hasNaming "degree" ;
-    net:hasPhenomenaRef "have-degree-91" ;
-    net:hasPhenomenaType :phenomena_degree ;
+net:restriction_compose-ice_c a net:Restriction_Net ;
+    net:composeFrom net:atomClass_ice_ii,
+        net:atomProperty_compose_c ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c,
+        :leaf_ice_ii ;
+    net:hasNaming "compose-ice" ;
+    net:hasRestrictionNetValue net:atomClass_ice_ii ;
+    net:hasRestrictionOnProperty net:atomProperty_compose_c ;
     net:hasStructure "unknown" .
 
-net:value_8_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_8 ;
-    net:hasNaming "8" ;
-    net:hasStructure "unknown" ;
-    net:hasValueLabel "8" .
+net:restriction_lie-beyond_l a net:Restriction_Net ;
+    net:composeFrom net:atomClass_beyond_b3,
+        net:atomProperty_lie_l ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_beyond_b3,
+        :leaf_lie-07_l ;
+    net:hasNaming "lie-beyond" ;
+    net:hasRestrictionNetValue net:atomClass_beyond_b3 ;
+    net:hasRestrictionOnProperty net:atomProperty_lie_l ;
+    net:hasStructure "unknown" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> a ns21:and ;
-    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
-    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> a ns21:and ;
-    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
-    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
-    ns3:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> a ns2:belt ;
+    rdfs:label "Kuiper Belt" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> a ns3:dwarf ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> a ns11:have-degree-91 ;
-    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
-    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
-    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
-    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> a ns3:large ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> a ns11:discover-01 ;
+    ns11:discover-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> a ns21:most ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> a ns2:ice ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> a ns21:more ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> a ns11:orbit-01 ;
-    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
-    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> a ns3:most ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> a <http://amr.isi.edu/entity-types#planet> ;
-    ns3:quant "8" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> a <http://amr.isi.edu/entity-types#planet> ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> a ns2:population ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> a ns11:remain-01 ;
-    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> a ns2:sednoid ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> a ns3:sun ;
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> a ns3:small ;
+ns11:compose-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> a ns3:small ;
+ns11:discover-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:direct-02 a ns21:Frame ;
+ns11:lie-07 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:orbit-01 a ns21:Frame ;
+ns11:new-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:remain-01 a ns21:Frame ;
+ns11:orbit-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:body a ns21:Concept ;
+ns11:scatter-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:dwarf a ns21:Concept ;
+ns11:transpire-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:large a ns21:Concept ;
+ns2:belt a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:part a ns21:Role ;
+ns2:disc a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:sun a ns21:Concept ;
+ns2:ice a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:system a ns21:Concept ;
+ns2:object a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:more a ns21:Concept ;
+ns2:sednoid a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:most a ns21:Concept ;
+ns3:most a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :concept_and rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns21:and ;
+    :fromAmrLk ns3:and ;
     :hasPhenomenaLink :phenomena_conjunction_and ;
     :label "and" .
 
-:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns11:have-degree-91 ;
-    :hasPhenomenaLink :phenomena_degree ;
-    :label "have-degree-91" .
+:concept_beyond rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:beyond ;
+    :label "beyond" .
 
-:concept_object rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:object ;
-    :label "object" .
-
-:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
-    :label "planet" .
-
-:concept_small rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:small ;
-    :label "small" .
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
 
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_direct-02_d a :AMR_Leaf ;
-    :edge_d_o2 :leaf_orbit-01_o2 ;
-    :hasConcept :concept_direct-02 ;
-    :hasVariable :variable_d .
+:leaf_new-01_n3 a :AMR_Leaf ;
+    :edge_n3_d2 :leaf_discover-01_d2 ;
+    :hasConcept :concept_new-01 ;
+    :hasVariable :variable_n3 .
 
-:leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_s4 :leaf_system_s4 ;
-    :edge_p9_ARG1_b :leaf_body_b ;
-    :hasConcept :concept_part ;
-    :hasVariable :variable_p9 ;
-    :isReifiedLeaf true .
+:leaf_scatter-01_s a :AMR_Leaf ;
+    :edge_s_d :leaf_disc_d ;
+    :hasConcept :concept_scatter-01 ;
+    :hasVariable :variable_s .
 
-:leaf_have-degree-91_h2 a :AMR_Leaf ;
-    :edge_h2_m2 :leaf_more_m2 ;
-    :edge_h2_o3 :leaf_object_o3 ;
-    :edge_h2_s2 :leaf_small_s2 ;
-    :hasConcept :concept_have-degree-91 ;
-    :hasVariable :variable_h2 .
+:leaf_transpire-01_t a :AMR_Leaf ;
+    :edge_t_o :leaf_object_o ;
+    :edge_t_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_transpire-01 ;
+    :hasVariable :variable_t .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1164,11 +1159,6 @@ ns21:most a ns21:Concept ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG2" .
 
-:role_ARG3 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG3" .
-
 :role_mod a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_NonCore_Role ;
@@ -1180,115 +1170,109 @@ ns21:most a ns21:Concept ;
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
-:role_op1 a owl:Class,
+:role_name a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
 
 :role_op2 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op2" .
 
-:value_8 a :AMR_Value ;
-    rdfs:label "8" .
+:value_KuiperBelt a :AMR_Value ;
+    rdfs:label "KuiperBelt" .
 
-:value_SolarSystem a :AMR_Value ;
-    rdfs:label "SolarSystem" .
+:value_Neptunian a :AMR_Value ;
+    rdfs:label "Neptunian" .
 
 sys:Out_ObjectProperty a owl:ObjectProperty .
 
-net:Composite_Class_Net a owl:Class ;
-    rdfs:subClassOf net:Class_Net .
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
 net:Property_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Value_Net a owl:Class ;
+net:Restriction_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_sun_s a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_sun_s ;
-    net:coverNode :leaf_sun_s ;
-    net:hasClassName "sun" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "sun" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_system_s4 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_SolarSystem_blankNode ;
-    net:coverBaseNode :leaf_system_s4 ;
-    net:coverNode :leaf_system_s4 ;
-    net:hasClassName "system" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "system" ;
-    net:hasStructure "unknown" .
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+net:atomProperty_discover_d2 a net:Atom_Property_Net,
         net:Deprecated_Net ;
-    :role_ARG0 net:atomClass_object_o ;
-    :role_ARG1 net:atomClass_sun_s ;
-    net:coverBaseNode :leaf_orbit-01_o2 ;
-    net:coverNode :leaf_orbit-01_o2 ;
-    net:hasNaming "orbit" ;
-    net:hasPropertyName "orbit" ;
-    net:hasPropertyName01 "orbiting" ;
-    net:hasPropertyName10 "orbit-by" ;
-    net:hasPropertyName12 "orbit-of" ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_discover-01_d2 ;
+    net:coverNode :leaf_discover-01_d2 ;
+    net:hasNaming "discover" ;
+    net:hasPropertyName "discover" ;
+    net:hasPropertyName01 "discovering" ;
+    net:hasPropertyName10 "discover-by" ;
+    net:hasPropertyName12 "discover-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_object_o,
-        :leaf_sun_s .
+    net:targetArgumentNode :leaf_population_p3 .
 
-net:compositeClass_dwarf-planet_p2 a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_dwarf_d2 ;
-    net:composeFrom net:atomClass_dwarf_d2,
-        net:atomClass_planet_p2 ;
+net:individual_Neptunian_p2 a net:Individual_Net ;
+    :role_name net:value_Neptunian_blankNode ;
     net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_dwarf_d2,
-        :leaf_planet_p2 ;
-    net:hasClassType sys:Entity ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Neptunian" ;
     net:hasMotherClassNet net:atomClass_planet_p2 ;
-    net:hasNaming "dwarf-planet" ;
+    net:hasNaming "Neptunian" ;
     net:hasStructure "unknown" .
 
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-net:value_SolarSystem_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_SolarSystem ;
-    net:hasNaming "SolarSystem" ;
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_belt_b,
+        net:individual_KuiperBelt_b ;
+    :role_op2 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:value_KuiperBelt_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_KuiperBelt ;
+    net:hasNaming "KuiperBelt" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "SolarSystem" .
+    net:hasValueLabel "KuiperBelt" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> a ns3:body ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
-    rdfs:subClassOf :AMR_Linked_Data .
+net:value_Neptunian_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Neptunian ;
+    net:hasNaming "Neptunian" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Neptunian" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> a ns3:object ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> a ns2:disc ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> a ns3:object ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> a ns2:object ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptunian" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:have-degree-91 a ns21:Frame ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> a ns2:population ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:object a ns21:Concept ;
+ns2:beyond a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:small a ns21:Concept ;
+ns2:population a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:and a ns21:Concept ;
+ns3:and a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1313,143 +1297,171 @@ ns21:and a ns21:Concept ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_and_a a :AMR_Leaf ;
-    :edge_a_h :leaf_have-degree-91_h ;
-    :edge_a_r :leaf_remain-01_r ;
-    :hasConcept :concept_and ;
-    :hasVariable :variable_a .
-
-:leaf_have-degree-91_h a :AMR_Leaf ;
-    :edge_h_l :leaf_large_l ;
-    :edge_h_m :leaf_most_m ;
-    :edge_h_o :leaf_object_o ;
-    :edge_h_p :leaf_planet_p ;
-    :hasConcept :concept_have-degree-91 ;
-    :hasVariable :variable_h .
-
-:leaf_large_l a :AMR_Leaf ;
-    :hasConcept :concept_large ;
-    :hasVariable :variable_l .
-
-:leaf_more_m2 a :AMR_Leaf ;
-    :hasConcept :concept_more ;
-    :hasVariable :variable_m2 .
+:leaf_beyond_b2 a :AMR_Leaf ;
+    :edge_b2_a2 :leaf_and_a2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b2 .
 
 :leaf_most_m a :AMR_Leaf ;
     :hasConcept :concept_most ;
     :hasVariable :variable_m .
 
-:leaf_planet_p a :AMR_Leaf ;
-    :edge_p_quant_8 :value_8 ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p .
-
-:leaf_remain-01_r a :AMR_Leaf ;
-    :edge_r_a2 :leaf_and_a2 ;
-    :hasConcept :concept_remain-01 ;
-    :hasVariable :variable_r .
-
-:leaf_small_s2 a :AMR_Leaf ;
-    :hasConcept :concept_small ;
-    :hasVariable :variable_s2 .
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
 
 :phenomena_conjunction_and a owl:Class ;
     rdfs:subClassOf :phenomena_conjunction ;
     :hasConceptLink "and" ;
     :label "conjunction-AND" .
 
-:phenomena_degree a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena ;
-    :hasConceptLink "have-degree-91" ;
-    :label "degree" .
-
 :phenomena_modality a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena .
 
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-net:Individual_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
 net:Net_Structure a owl:Class ;
     rdfs:label "Semantic Net Structure" ;
     rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
 
-net:atomClass_object_o a net:Atom_Class_Net,
+net:atomClass_belt_b a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_KuiperBelt_blankNode ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasClassName "belt" ;
+    net:hasNaming "belt" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_disc_d a net:Atom_Class_Net,
         net:Class_Net ;
-    net:coverBaseNode :leaf_object_o ;
-    net:coverNode :leaf_object_o ;
-    net:hasClassName "object" ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d ;
+    net:hasClassName "disc" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "object" ;
+    net:hasNaming "disc" ;
     net:hasStructure "unknown" .
 
-net:atomClass_object_o3 a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_object_o3 ;
-    net:coverNode :leaf_object_o3 ;
-    net:hasClassName "object" ;
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Neptunian_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "object" ;
+    net:hasNaming "planet" ;
     net:hasStructure "unknown" .
 
-net:compositeClass_small-body_b a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_small_s3 ;
-    net:composeFrom net:atomClass_body_b,
-        net:atomClass_small_s3 ;
-    net:coverBaseNode :leaf_body_b ;
-    net:coverNode :leaf_body_b,
-        :leaf_small_s3 ;
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
     net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_body_b ;
-    net:hasNaming "small-body" ;
+    net:hasNaming "population" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_compose_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_population_p,
+        net:compositeClass_object-population_p ;
+    :role_ARG2 net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_ice_ii,
+        :leaf_population_p .
+
+net:atomProperty_lie_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_beyond_b3 ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_lie-07_l ;
+    net:hasNaming "lie" ;
+    net:hasPropertyName "lie" ;
+    net:hasPropertyName01 "lieing" ;
+    net:hasPropertyName10 "lie-by" ;
+    net:hasPropertyName12 "lie-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_beyond_b3 .
+
+net:compositeClass_object-population_p a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_object_o,
+        :leaf_population_p ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "object-population" ;
     net:hasStructure "unknown" .
 
 net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-ns21:Frame a ns21:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Frame" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:leaf_and_a2 a :AMR_Leaf ;
-    :edge_a2_b :leaf_body_b ;
-    :edge_a2_o3 :leaf_object_o3 ;
-    :edge_a2_p2 :leaf_planet_p2 ;
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_a2 :leaf_and_a2 ;
+    :edge_a_p3 :leaf_population_p3 ;
     :hasConcept :concept_and ;
-    :hasVariable :variable_a2 .
+    :hasVariable :variable_a .
 
-:leaf_object_o3 a :AMR_Leaf ;
-    :hasConcept :concept_object ;
-    :hasVariable :variable_o3 .
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
 
-:leaf_sun_s a :AMR_Leaf ;
-    :hasConcept :concept_sun ;
-    :hasVariable :variable_s .
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
 
-net:Deprecated_Net a owl:Class ;
+net:Individual_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Phenomena_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+net:atomClass_beyond_b3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_beyond_b3 ;
+    net:coverNode :leaf_beyond_b3 ;
+    net:hasClassName "beyond" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "beyond" ;
+    net:hasStructure "unknown" .
 
-net:atomClass_planet_p2 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_dwarf_d2 ;
-    net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_planet_p2 ;
-    net:hasClassName "planet" ;
+net:atomClass_ice_ii a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_ice_ii ;
+    net:coverNode :leaf_ice_ii ;
+    net:hasClassName "ice" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
+    net:hasNaming "ice" ;
     net:hasStructure "unknown" .
 
 net:typeProperty a owl:AnnotationProperty ;
@@ -1461,42 +1473,29 @@ net:typeProperty a owl:AnnotationProperty ;
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-:leaf_object_o a :AMR_Leaf ;
-    :hasConcept :concept_object ;
-    :hasVariable :variable_o .
-
-:leaf_planet_p2 a :AMR_Leaf ;
-    :edge_p2_d2 :leaf_dwarf_d2 ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p2 .
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_belt_b ;
+    :edge_a2_d :leaf_disc_d ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
 
-sys:Out_Structure a owl:Class ;
-    rdfs:label "Output Ontology Structure" .
+:leaf_belt_b a :AMR_Leaf ;
+    :edge_b_name_KuiperBelt :value_KuiperBelt ;
+    :hasConcept :concept_belt ;
+    :hasVariable :variable_b .
 
-net:atomClass_body_b a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_small_s3 ;
-    net:coverBaseNode :leaf_body_b ;
-    net:coverNode :leaf_body_b ;
-    net:hasClassName "body" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "body" ;
-    net:hasStructure "unknown" .
+:leaf_compose-01_c a :AMR_Leaf ;
+    :edge_c_ii :leaf_ice_ii ;
+    :edge_c_p :leaf_population_p ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c .
 
-net:atomClass_dwarf_d2 a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_dwarf_d2 ;
-    net:coverNode :leaf_dwarf_d2 ;
-    net:hasClassName "dwarf" ;
-    net:hasNaming "dwarf" ;
-    net:hasStructure "unknown" .
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
 
-net:atomClass_small_s3 a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_small_s3 ;
-    net:coverNode :leaf_small_s3 ;
-    net:hasClassName "small" ;
-    net:hasNaming "small" ;
-    net:hasStructure "unknown" .
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
 
 net:netProperty a owl:AnnotationProperty ;
     rdfs:label "netProperty" .
@@ -1504,29 +1503,28 @@ net:netProperty a owl:AnnotationProperty ;
 :AMR_ObjectProperty a owl:ObjectProperty ;
     rdfs:subPropertyOf owl:topObjectProperty .
 
-:AMR_Predicat_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Structure a owl:Class .
 
-:leaf_dwarf_d2 a :AMR_Leaf ;
-    :hasConcept :concept_dwarf ;
-    :hasVariable :variable_d2 .
+:leaf_beyond_b3 a :AMR_Leaf ;
+    :edge_b3_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b3 .
 
-:leaf_orbit-01_o2 a :AMR_Leaf ;
-    :edge_o2_o :leaf_object_o ;
-    :edge_o2_s :leaf_sun_s ;
-    :hasConcept :concept_orbit-01 ;
-    :hasVariable :variable_o2 .
+:leaf_discover-01_d2 a :AMR_Leaf ;
+    :edge_d2_p3 :leaf_population_p3 ;
+    :hasConcept :concept_discover-01 ;
+    :hasVariable :variable_d2 .
 
-:leaf_small_s3 a :AMR_Leaf ;
-    :hasConcept :concept_small ;
-    :hasVariable :variable_s3 .
+:leaf_ice_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :hasConcept :concept_ice ;
+    :hasVariable :variable_ii .
 
-:leaf_system_s4 a :AMR_Leaf ;
-    :edge_s4_name_SolarSystem :value_SolarSystem ;
-    :hasConcept :concept_system ;
-    :hasVariable :variable_s4 .
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_a :leaf_and_a ;
+    :edge_l_b3 :leaf_beyond_b3 ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
 
 :role_ARG1 a owl:Class,
         net:Relation ;
@@ -1536,28 +1534,88 @@ net:netProperty a owl:AnnotationProperty ;
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
-net:Atom_Property_Net a owl:Class ;
-    rdfs:subClassOf net:Property_Net .
+net:atomClass_population_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_population_p3 ;
+    net:hasClassName "population" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "population" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sednoid_s2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sednoid_s2 ;
+    net:coverNode :leaf_sednoid_s2 ;
+    net:hasClassName "sednoid" ;
+    net:hasNaming "sednoid" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_sednoid-population_p3 a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:composeFrom net:atomClass_population_p3,
+        net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_population_p3,
+        :leaf_sednoid_s2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p3 ;
+    net:hasNaming "sednoid-population" ;
+    net:hasStructure "unknown" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
 rdf:Property a owl:Class .
 
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:leaf_body_b a :AMR_Leaf ;
-    :edge_b_s3 :leaf_small_s3 ;
-    :hasConcept :concept_body ;
-    :hasVariable :variable_b .
+:leaf_sednoid_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sednoid ;
+    :hasVariable :variable_s2 .
 
-ns11:FrameRole a ns21:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
 :AMR_Term_Concept a owl:Class ;
     rdfs:subClassOf :AMR_Concept .
 
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Neptunian :value_Neptunian ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_a2 :leaf_and_a2 ;
+    :edge_p_o :leaf_object_o ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
@@ -1565,23 +1623,36 @@ net:has_object a owl:AnnotationProperty ;
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_population_p3 a :AMR_Leaf ;
+    :edge_p3_b2 :leaf_beyond_b2 ;
+    :edge_p3_s2 :leaf_sednoid_s2 ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p3 .
+
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_AnnotationProperty a owl:AnnotationProperty .
 
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-net:Relation a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
 
 net:Atom_Class_Net a owl:Class ;
     rdfs:subClassOf net:Class_Net .
 
-sys:Entity a owl:Class ;
-    rdfs:subClassOf sys:Out_Structure .
-
 net:Class_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
index d09557edcb6a0ee52afef4adfa8d2486cde6fe79..82faf8fc3bd21e21230f5975a29aebe1387e99f1 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -2,86 +2,110 @@
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 
-<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#system> ;
-    rdfs:label "SolarSystem" ;
+<https://tenet.tetras-libre.fr/extract-result#KuiperBelt> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#belt> ;
+    rdfs:label "KuiperBelt" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ;
-    rdfs:label "direct" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
-    ns1:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+<https://tenet.tetras-libre.fr/extract-result#Neptunian> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Neptunian" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
-    rdfs:label "hasPart" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
+    rdfs:label "disc" ;
+    rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
-    rdfs:label "large" ;
+<https://tenet.tetras-libre.fr/extract-result#discover> a owl:Class ;
+    rdfs:label "discover" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
-    rdfs:label "more" ;
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
-    rdfs:label "most" ;
+<https://tenet.tetras-libre.fr/extract-result#new> a owl:ObjectProperty ;
+    rdfs:label "new" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
-    rdfs:label "object" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#object-population-compose-ice> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#compose> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#ice> ],
+        <https://tenet.tetras-libre.fr/extract-result#object-population> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
     rdfs:label "orbit" ;
-    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
-    rdfs:label "remain" ;
+<https://tenet.tetras-libre.fr/extract-result#scatter> a owl:ObjectProperty ;
+    rdfs:label "scatter" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population-lie-beyond> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#lie> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#beyond> ],
+        <https://tenet.tetras-libre.fr/extract-result#sednoid-population> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
-    rdfs:label "sun" ;
+<https://tenet.tetras-libre.fr/extract-result#transpire> a owl:ObjectProperty ;
+    rdfs:label "transpire" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#beyond> a owl:Class ;
+    rdfs:label "beyond" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
+    rdfs:label "compose" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#ice> a owl:Class ;
+    rdfs:label "ice" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
-    rdfs:label "body" ;
+<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "object" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+<https://tenet.tetras-libre.fr/extract-result#object-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid> a owl:Class,
         owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
-    rdfs:label "dwarf" ;
+        <https://tenet.tetras-libre.fr/extract-result#sednoid> ;
+    rdfs:label "sednoid" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
-    rdfs:label "planet" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#small> ;
-    rdfs:label "small" ;
-    rdfs:subClassOf ns1:Entity,
-        ns1:Undetermined_Thing ;
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..596bb0e7a55c37d52afa118f1561db89ec9b6427
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1466 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:debate-01.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG6 a ns11:FrameRole .
+
+ns11:prove-01.ARG1 a ns11:FrameRole .
+
+ns11:round-03.ARG1 a ns11:FrameRole .
+
+ns2:degree a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:poss a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_d_c a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_d_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_g_o a :AMR_Edge ;
+    :hasRoleID "poss" .
+
+:edge_h2_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h2_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG6 ;
+    :hasRoleID "ARG6" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_t2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p2_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_u a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_u_g a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-13 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> ;
+    :hasRootLeaf :leaf_have-concession-91_h ;
+    :hasSentenceID "WikiAbstract-SolarSystem-13" ;
+    :hasSentenceStatement "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#considerable> a owl:Class ;
+    rdfs:label "considerable" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#debate> a owl:Class ;
+    rdfs:label "debate" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#enough> a owl:Class ;
+    rdfs:label "enough" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#gravity> a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#have> a owl:ObjectProperty ;
+    rdfs:label "have" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#many> a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#prove> a owl:ObjectProperty ;
+    rdfs:label "prove" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#round> a owl:ObjectProperty ;
+    rdfs:label "round" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#some> a owl:Class ;
+    rdfs:label "some" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#thing> a owl:Class ;
+    rdfs:label "thing" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#this-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#under> a owl:Class ;
+    rdfs:label "under" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_considerable_c a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_considerable_c ;
+    net:coverNode :leaf_considerable_c ;
+    net:hasClassName "considerable" ;
+    net:hasNaming "considerable" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_under_u a net:Atom_Class_Net ;
+    :role_op1 net:atomClass_gravity_g ;
+    net:coverBaseNode :leaf_under_u ;
+    net:coverNode :leaf_under_u ;
+    net:hasClassName "under" ;
+    net:hasNaming "under" ;
+    net:hasStructure "unknown" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_have_h a net:Atom_Property_Net ;
+    :role_ARG1 net:phenomena_degree_h2 ;
+    :role_ARG2 net:atomClass_debate_d,
+        net:atomProperty_debate_d ;
+    net:coverBaseNode :leaf_have-concession-91_h ;
+    net:coverNode :leaf_have-concession-91_h ;
+    net:hasNaming "have" ;
+    net:hasPropertyName "have" ;
+    net:hasPropertyName01 "haveing" ;
+    net:hasPropertyName10 "have-by" ;
+    net:hasPropertyName12 "have-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_debate-01_d,
+        :leaf_have-degree-91_h2 .
+
+net:atomProperty_prove_p2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_many_m ;
+    net:coverBaseNode :leaf_prove-01_p2 ;
+    net:coverNode :leaf_prove-01_p2 ;
+    net:hasNaming "prove" ;
+    net:hasPropertyName "prove" ;
+    net:hasPropertyName01 "proveing" ;
+    net:hasPropertyName10 "prove-by" ;
+    net:hasPropertyName12 "prove-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_many_m .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_this-population_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_this_t ;
+    net:composeFrom net:atomClass_population_p,
+        net:atomClass_this_t ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p,
+        :leaf_this_t ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "this-population" ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_this_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_this_t ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "this" ;
+    net:hasMotherClassNet net:atomClass_this_t ;
+    net:hasNaming "this" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> a ns11:prove-01 ;
+    ns11:prove-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-13" ;
+    ns3:has-sentence "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_considerable rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:considerable ;
+    :label "considerable" .
+
+:concept_debate-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:debate-01 ;
+    :label "debate-01" .
+
+:concept_enough rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:enough ;
+    :label "enough" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_have-concession-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:have-concession-91 ;
+    :label "have-concession-91" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
+
+:concept_prove-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:prove-01 ;
+    :label "prove-01" .
+
+:concept_round-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:round-03 ;
+    :label "round-03" .
+
+:concept_some rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:some ;
+    :label "some" .
+
+:concept_thing rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#thing> ;
+    :label "thing" .
+
+:concept_this rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:this ;
+    :label "this" .
+
+:concept_under rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:under ;
+    :label "under" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG6 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    :label "e" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    :label "g" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    :label "t2" .
+
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    :label "u" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#this> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#this> ;
+    rdfs:label "this" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_debate_d a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG1 net:atomClass_thing_t2 ;
+    net:composeFrom net:atomProperty_debate_d ;
+    net:coverBaseNode :leaf_debate-01_d ;
+    net:coverNode :leaf_debate-01_d ;
+    net:hasClassName "debate" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "debate" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_enough_e a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_enough_e ;
+    net:coverNode :leaf_enough_e ;
+    net:hasClassName "enough" ;
+    net:hasNaming "enough" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_gravity_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_gravity_g ;
+    net:coverNode :leaf_gravity_g ;
+    net:hasClassName "gravity" ;
+    net:hasNaming "gravity" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_many_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_thing_t2 ;
+    net:coverBaseNode :leaf_many_m ;
+    net:coverNode :leaf_many_m ;
+    net:hasClassName "many" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "many" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_some_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_some_s ;
+    net:coverNode :leaf_some_s ;
+    net:hasClassName "some" ;
+    net:hasNaming "some" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_round_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_round-03_r ;
+    net:coverNode :leaf_round-03_r ;
+    net:hasNaming "round" ;
+    net:hasPropertyName "round" ;
+    net:hasPropertyName01 "rounding" ;
+    net:hasPropertyName10 "round-by" ;
+    net:hasPropertyName12 "round-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomClass_enough_e ;
+    :role_ARG6 net:atomProperty_round_r ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> a ns2:considerable ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> a ns11:debate-01 ;
+    ns11:debate-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    ns2:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> a ns2:enough ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> a ns2:gravity ;
+    ns2:poss <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> a ns11:have-concession-91 ;
+    ns11:have-concession-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    ns11:have-concession-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    ns11:have-degree-91.ARG6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> a ns2:many ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> a ns2:population ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> a ns11:round-03 ;
+    ns11:round-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> a ns2:some ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> a ns2:this ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> a ns2:under ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:debate-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-concession-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:prove-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:round-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:considerable a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:enough a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:many a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:population a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:some a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:this a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:under a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_prove-01_p2 a :AMR_Leaf ;
+    :edge_p2_m :leaf_many_m ;
+    :hasConcept :concept_prove-01 ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_some_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_this_t ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
+    net:hasNaming "population" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_debate_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_thing_t2 ;
+    net:coverBaseNode :leaf_debate-01_d ;
+    net:coverNode :leaf_debate-01_d ;
+    net:hasNaming "debate" ;
+    net:hasPropertyName "debate" ;
+    net:hasPropertyName01 "debateing" ;
+    net:hasPropertyName10 "debate-by" ;
+    net:hasPropertyName12 "debate-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_thing_t2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_considerable_c a :AMR_Leaf ;
+    :hasConcept :concept_considerable ;
+    :hasVariable :variable_c .
+
+:leaf_enough_e a :AMR_Leaf ;
+    :hasConcept :concept_enough ;
+    :hasVariable :variable_e .
+
+:leaf_gravity_g a :AMR_Leaf ;
+    :edge_g_o :leaf_object_o ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g .
+
+:leaf_have-concession-91_h a :AMR_Leaf ;
+    :edge_h_d :leaf_debate-01_d ;
+    :edge_h_h2 :leaf_have-degree-91_h2 ;
+    :hasConcept :concept_have-concession-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_round-03_r a :AMR_Leaf ;
+    :edge_r_o :leaf_object_o ;
+    :edge_r_u :leaf_under_u ;
+    :hasConcept :concept_round-03 ;
+    :hasVariable :variable_r .
+
+:leaf_some_s a :AMR_Leaf ;
+    :hasConcept :concept_some ;
+    :hasVariable :variable_s .
+
+:leaf_under_u a :AMR_Leaf ;
+    :edge_u_g :leaf_gravity_g ;
+    :hasConcept :concept_under ;
+    :hasVariable :variable_u .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_thing_t2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_thing_t2 ;
+    net:coverNode :leaf_thing_t2 ;
+    net:hasClassName "thing" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "thing" ;
+    net:hasStructure "unknown" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_e :leaf_enough_e ;
+    :edge_h2_l :leaf_large_l ;
+    :edge_h2_o :leaf_object_o ;
+    :edge_h2_p :leaf_population_p ;
+    :edge_h2_r :leaf_round-03_r ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_many_m a :AMR_Leaf ;
+    :edge_m_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_t :leaf_this_t ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+:leaf_thing_t2 a :AMR_Leaf ;
+    :hasConcept :concept_thing ;
+    :hasVariable :variable_t2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_this_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasClassName "this" ;
+    net:hasNaming "this" ;
+    net:hasStructure "unknown" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_debate-01_d a :AMR_Leaf ;
+    :edge_d_c :leaf_considerable_c ;
+    :edge_d_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_debate-01 ;
+    :hasVariable :variable_d .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_s :leaf_some_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_this_t a :AMR_Leaf ;
+    :hasConcept :concept_this ;
+    :hasVariable :variable_t .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..d97a54d3ba5def2e7b7f195b6af7a5cef65210ed
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1184 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:debate-01.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG6 a ns11:FrameRole .
+
+ns11:prove-01.ARG1 a ns11:FrameRole .
+
+ns11:round-03.ARG1 a ns11:FrameRole .
+
+ns2:degree a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:poss a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_d_c a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_d_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_g_o a :AMR_Edge ;
+    :hasRoleID "poss" .
+
+:edge_h2_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h2_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG6 ;
+    :hasRoleID "ARG6" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_t2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p2_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_u a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_u_g a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_prove-01_p2 a :AMR_Leaf ;
+    :edge_p2_m :leaf_many_m ;
+    :hasConcept :concept_prove-01 ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-13 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> ;
+    :hasRootLeaf :leaf_have-concession-91_h ;
+    :hasSentenceID "WikiAbstract-SolarSystem-13" ;
+    :hasSentenceStatement "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> a ns11:prove-01 ;
+    ns11:prove-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-13" ;
+    ns3:has-sentence "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_considerable rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:considerable ;
+    :label "considerable" .
+
+:concept_debate-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:debate-01 ;
+    :label "debate-01" .
+
+:concept_enough rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:enough ;
+    :label "enough" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_have-concession-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:have-concession-91 ;
+    :label "have-concession-91" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
+
+:concept_prove-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:prove-01 ;
+    :label "prove-01" .
+
+:concept_round-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:round-03 ;
+    :label "round-03" .
+
+:concept_some rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:some ;
+    :label "some" .
+
+:concept_thing rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#thing> ;
+    :label "thing" .
+
+:concept_this rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:this ;
+    :label "this" .
+
+:concept_under rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:under ;
+    :label "under" .
+
+:leaf_considerable_c a :AMR_Leaf ;
+    :hasConcept :concept_considerable ;
+    :hasVariable :variable_c .
+
+:leaf_debate-01_d a :AMR_Leaf ;
+    :edge_d_c :leaf_considerable_c ;
+    :edge_d_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_debate-01 ;
+    :hasVariable :variable_d .
+
+:leaf_enough_e a :AMR_Leaf ;
+    :hasConcept :concept_enough ;
+    :hasVariable :variable_e .
+
+:leaf_gravity_g a :AMR_Leaf ;
+    :edge_g_o :leaf_object_o ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g .
+
+:leaf_have-concession-91_h a :AMR_Leaf ;
+    :edge_h_d :leaf_debate-01_d ;
+    :edge_h_h2 :leaf_have-degree-91_h2 ;
+    :hasConcept :concept_have-concession-91 ;
+    :hasVariable :variable_h .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_e :leaf_enough_e ;
+    :edge_h2_l :leaf_large_l ;
+    :edge_h2_o :leaf_object_o ;
+    :edge_h2_p :leaf_population_p ;
+    :edge_h2_r :leaf_round-03_r ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_many_m a :AMR_Leaf ;
+    :edge_m_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_t :leaf_this_t ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+:leaf_round-03_r a :AMR_Leaf ;
+    :edge_r_o :leaf_object_o ;
+    :edge_r_u :leaf_under_u ;
+    :hasConcept :concept_round-03 ;
+    :hasVariable :variable_r .
+
+:leaf_some_s a :AMR_Leaf ;
+    :hasConcept :concept_some ;
+    :hasVariable :variable_s .
+
+:leaf_this_t a :AMR_Leaf ;
+    :hasConcept :concept_this ;
+    :hasVariable :variable_t .
+
+:leaf_under_u a :AMR_Leaf ;
+    :edge_u_g :leaf_gravity_g ;
+    :hasConcept :concept_under ;
+    :hasVariable :variable_u .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    :label "e" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    :label "g" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    :label "t2" .
+
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    :label "u" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> a ns2:considerable ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> a ns11:debate-01 ;
+    ns11:debate-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    ns2:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> a ns2:enough ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> a ns2:gravity ;
+    ns2:poss <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> a ns11:have-concession-91 ;
+    ns11:have-concession-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    ns11:have-concession-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    ns11:have-degree-91.ARG6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> a ns2:many ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> a ns2:population ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> a ns11:round-03 ;
+    ns11:round-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> a ns2:some ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> a ns2:this ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> a ns2:under ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:debate-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-concession-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:prove-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:round-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:considerable a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:enough a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:many a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:population a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:some a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:this a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:under a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_thing_t2 a :AMR_Leaf ;
+    :hasConcept :concept_thing ;
+    :hasVariable :variable_t2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_s :leaf_some_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..51cedcf27e742a19cd6090191cb17c7d8fb13bc4
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1385 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:debate-01.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG6 a ns11:FrameRole .
+
+ns11:prove-01.ARG1 a ns11:FrameRole .
+
+ns11:round-03.ARG1 a ns11:FrameRole .
+
+ns2:degree a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:poss a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_d_c a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_d_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_g_o a :AMR_Edge ;
+    :hasRoleID "poss" .
+
+:edge_h2_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h2_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG6 ;
+    :hasRoleID "ARG6" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_t2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p2_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_u a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_u_g a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-13 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> ;
+    :hasRootLeaf :leaf_have-concession-91_h ;
+    :hasSentenceID "WikiAbstract-SolarSystem-13" ;
+    :hasSentenceStatement "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_considerable_c a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_considerable_c ;
+    net:coverNode :leaf_considerable_c ;
+    net:hasClassName "considerable" ;
+    net:hasNaming "considerable" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_under_u a net:Atom_Class_Net ;
+    :role_op1 net:atomClass_gravity_g ;
+    net:coverBaseNode :leaf_under_u ;
+    net:coverNode :leaf_under_u ;
+    net:hasClassName "under" ;
+    net:hasNaming "under" ;
+    net:hasStructure "unknown" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_have_h a net:Atom_Property_Net ;
+    :role_ARG1 net:phenomena_degree_h2 ;
+    :role_ARG2 net:atomClass_debate_d,
+        net:atomProperty_debate_d ;
+    net:coverBaseNode :leaf_have-concession-91_h ;
+    net:coverNode :leaf_have-concession-91_h ;
+    net:hasNaming "have" ;
+    net:hasPropertyName "have" ;
+    net:hasPropertyName01 "haveing" ;
+    net:hasPropertyName10 "have-by" ;
+    net:hasPropertyName12 "have-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_debate-01_d,
+        :leaf_have-degree-91_h2 .
+
+net:atomProperty_prove_p2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_many_m ;
+    net:coverBaseNode :leaf_prove-01_p2 ;
+    net:coverNode :leaf_prove-01_p2 ;
+    net:hasNaming "prove" ;
+    net:hasPropertyName "prove" ;
+    net:hasPropertyName01 "proveing" ;
+    net:hasPropertyName10 "prove-by" ;
+    net:hasPropertyName12 "prove-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_many_m .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_this-population_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_this_t ;
+    net:composeFrom net:atomClass_population_p,
+        net:atomClass_this_t ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p,
+        :leaf_this_t ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "this-population" ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_this_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_this_t ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "this" ;
+    net:hasMotherClassNet net:atomClass_this_t ;
+    net:hasNaming "this" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> a ns11:prove-01 ;
+    ns11:prove-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-13" ;
+    ns3:has-sentence "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_considerable rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:considerable ;
+    :label "considerable" .
+
+:concept_debate-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:debate-01 ;
+    :label "debate-01" .
+
+:concept_enough rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:enough ;
+    :label "enough" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_have-concession-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:have-concession-91 ;
+    :label "have-concession-91" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
+
+:concept_prove-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:prove-01 ;
+    :label "prove-01" .
+
+:concept_round-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:round-03 ;
+    :label "round-03" .
+
+:concept_some rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:some ;
+    :label "some" .
+
+:concept_thing rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#thing> ;
+    :label "thing" .
+
+:concept_this rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:this ;
+    :label "this" .
+
+:concept_under rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:under ;
+    :label "under" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG6 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    :label "e" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    :label "g" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    :label "t2" .
+
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    :label "u" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_debate_d a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG1 net:atomClass_thing_t2 ;
+    net:composeFrom net:atomProperty_debate_d ;
+    net:coverBaseNode :leaf_debate-01_d ;
+    net:coverNode :leaf_debate-01_d ;
+    net:hasClassName "debate" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "debate" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_enough_e a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_enough_e ;
+    net:coverNode :leaf_enough_e ;
+    net:hasClassName "enough" ;
+    net:hasNaming "enough" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_gravity_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_gravity_g ;
+    net:coverNode :leaf_gravity_g ;
+    net:hasClassName "gravity" ;
+    net:hasNaming "gravity" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_many_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_thing_t2 ;
+    net:coverBaseNode :leaf_many_m ;
+    net:coverNode :leaf_many_m ;
+    net:hasClassName "many" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "many" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_some_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_some_s ;
+    net:coverNode :leaf_some_s ;
+    net:hasClassName "some" ;
+    net:hasNaming "some" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_round_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_round-03_r ;
+    net:coverNode :leaf_round-03_r ;
+    net:hasNaming "round" ;
+    net:hasPropertyName "round" ;
+    net:hasPropertyName01 "rounding" ;
+    net:hasPropertyName10 "round-by" ;
+    net:hasPropertyName12 "round-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomClass_enough_e ;
+    :role_ARG6 net:atomProperty_round_r ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> a ns2:considerable ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> a ns11:debate-01 ;
+    ns11:debate-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    ns2:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> a ns2:enough ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> a ns2:gravity ;
+    ns2:poss <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> a ns11:have-concession-91 ;
+    ns11:have-concession-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    ns11:have-concession-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    ns11:have-degree-91.ARG6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> a ns2:many ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> a ns2:population ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> a ns11:round-03 ;
+    ns11:round-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> a ns2:some ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> a ns2:this ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> a ns2:under ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:debate-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-concession-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:prove-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:round-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:considerable a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:enough a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:many a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:population a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:some a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:this a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:under a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_prove-01_p2 a :AMR_Leaf ;
+    :edge_p2_m :leaf_many_m ;
+    :hasConcept :concept_prove-01 ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_some_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_this_t ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
+    net:hasNaming "population" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_debate_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_thing_t2 ;
+    net:coverBaseNode :leaf_debate-01_d ;
+    net:coverNode :leaf_debate-01_d ;
+    net:hasNaming "debate" ;
+    net:hasPropertyName "debate" ;
+    net:hasPropertyName01 "debateing" ;
+    net:hasPropertyName10 "debate-by" ;
+    net:hasPropertyName12 "debate-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_thing_t2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_considerable_c a :AMR_Leaf ;
+    :hasConcept :concept_considerable ;
+    :hasVariable :variable_c .
+
+:leaf_enough_e a :AMR_Leaf ;
+    :hasConcept :concept_enough ;
+    :hasVariable :variable_e .
+
+:leaf_gravity_g a :AMR_Leaf ;
+    :edge_g_o :leaf_object_o ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g .
+
+:leaf_have-concession-91_h a :AMR_Leaf ;
+    :edge_h_d :leaf_debate-01_d ;
+    :edge_h_h2 :leaf_have-degree-91_h2 ;
+    :hasConcept :concept_have-concession-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_round-03_r a :AMR_Leaf ;
+    :edge_r_o :leaf_object_o ;
+    :edge_r_u :leaf_under_u ;
+    :hasConcept :concept_round-03 ;
+    :hasVariable :variable_r .
+
+:leaf_some_s a :AMR_Leaf ;
+    :hasConcept :concept_some ;
+    :hasVariable :variable_s .
+
+:leaf_under_u a :AMR_Leaf ;
+    :edge_u_g :leaf_gravity_g ;
+    :hasConcept :concept_under ;
+    :hasVariable :variable_u .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_thing_t2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_thing_t2 ;
+    net:coverNode :leaf_thing_t2 ;
+    net:hasClassName "thing" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "thing" ;
+    net:hasStructure "unknown" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_e :leaf_enough_e ;
+    :edge_h2_l :leaf_large_l ;
+    :edge_h2_o :leaf_object_o ;
+    :edge_h2_p :leaf_population_p ;
+    :edge_h2_r :leaf_round-03_r ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_many_m a :AMR_Leaf ;
+    :edge_m_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_t :leaf_this_t ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+:leaf_thing_t2 a :AMR_Leaf ;
+    :hasConcept :concept_thing ;
+    :hasVariable :variable_t2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_this_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasClassName "this" ;
+    net:hasNaming "this" ;
+    net:hasStructure "unknown" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_debate-01_d a :AMR_Leaf ;
+    :edge_d_c :leaf_considerable_c ;
+    :edge_d_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_debate-01 ;
+    :hasVariable :variable_d .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_s :leaf_some_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_this_t a :AMR_Leaf ;
+    :hasConcept :concept_this ;
+    :hasVariable :variable_t .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..afc657b07de4c2d55398628fcf6fe728d74476f4
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,85 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#considerable> a owl:Class ;
+    rdfs:label "considerable" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#debate> a owl:Class ;
+    rdfs:label "debate" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#enough> a owl:Class ;
+    rdfs:label "enough" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#gravity> a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#have> a owl:ObjectProperty ;
+    rdfs:label "have" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#many> a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#prove> a owl:ObjectProperty ;
+    rdfs:label "prove" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#round> a owl:ObjectProperty ;
+    rdfs:label "round" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#some> a owl:Class ;
+    rdfs:label "some" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#thing> a owl:Class ;
+    rdfs:label "thing" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#this-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#under> a owl:Class ;
+    rdfs:label "under" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#this> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#this> ;
+    rdfs:label "this" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
index 197fad9b712d077be8021fc93121b9a6824ddd24..67afaccb66b2ac4b0724e501601a16282608bb43 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -28,15 +28,19 @@ ns1:Role a rdfs:Class,
     ns1:hasSentence "Earth is a planet." ;
     ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns3:compose-01.ARG1 a ns3:FrameRole .
+ns3:accept-01.ARG0 a ns3:FrameRole .
 
-ns3:compose-01.ARG2 a ns3:FrameRole .
+ns3:accept-01.ARG1 a ns3:FrameRole .
 
-ns3:have-degree-91.ARG1 a ns3:FrameRole .
+ns3:accept-01.ARG3 a ns3:FrameRole .
 
-ns3:have-degree-91.ARG2 a ns3:FrameRole .
+ns3:general-02.ARG1 a ns3:FrameRole .
 
-ns3:have-degree-91.ARG3 a ns3:FrameRole .
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:observe-01.ARG0 a ns3:FrameRole .
 
 ns2:domain a ns1:Role,
         owl:AnnotationProperty,
@@ -52,6 +56,18 @@ ns2:op3 a ns1:Role .
 
 ns2:op4 a ns1:Role .
 
+ns2:op5 a ns1:Role .
+
+ns2:op6 a ns1:Role .
+
+ns2:op7 a ns1:Role .
+
+ns2:op8 a ns1:Role .
+
+ns2:op9 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
 ns1:hasID a owl:AnnotationProperty .
 
 ns1:hasSentence a owl:AnnotationProperty .
@@ -69,87 +85,115 @@ ns1:root a owl:AnnotationProperty .
 :AMR_Root a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:edge_a2_m a :AMR_Edge ;
-    :hasAmrRole :role_op2 ;
-    :hasRoleID "op2" .
-
-:edge_a2_r a :AMR_Edge ;
-    :hasAmrRole :role_op1 ;
-    :hasRoleID "op1" .
-
-:edge_a_p2 a :AMR_Edge ;
+:edge_a3_a4 a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_a_p3 a :AMR_Edge ;
-    :hasAmrRole :role_op2 ;
-    :hasRoleID "op2" .
-
-:edge_a_p4 a :AMR_Edge ;
+:edge_a3_a5 a :AMR_Edge ;
     :hasAmrRole :role_op3 ;
     :hasRoleID "op3" .
 
-:edge_a_p5 a :AMR_Edge ;
+:edge_a3_a6 a :AMR_Edge ;
     :hasAmrRole :role_op4 ;
     :hasRoleID "op4" .
 
-:edge_c_a a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_a3_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
 
-:edge_c_a2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
+:edge_a3_o4 a :AMR_Edge ;
+    :hasAmrRole :role_op5 ;
+    :hasRoleID "op5" .
 
-:edge_c_p6 a :AMR_Edge ;
+:edge_a3_o5 a :AMR_Edge ;
+    :hasAmrRole :role_op6 ;
+    :hasRoleID "op6" .
+
+:edge_a3_o6 a :AMR_Edge ;
+    :hasAmrRole :role_op7 ;
+    :hasRoleID "op7" .
+
+:edge_a3_o7 a :AMR_Edge ;
+    :hasAmrRole :role_op8 ;
+    :hasRoleID "op8" .
+
+:edge_a3_o8 a :AMR_Edge ;
+    :hasAmrRole :role_op9 ;
+    :hasRoleID "op9" .
+
+:edge_a3_t a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
-:edge_h_a a :AMR_Edge ;
+:edge_a4_name_Cerre a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a5_name_Eris a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a6_name_Haumea a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a_o2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_h_m2 a :AMR_Edge ;
+:edge_a_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_a_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG3 ;
     :hasRoleID "ARG3" .
 
-:edge_h_s2 a :AMR_Edge ;
+:edge_g_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_a3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_p2_name_Mercury a :AMR_Edge ;
+:edge_o2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o3_name_Pluto a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p3_name_Venus a :AMR_Edge ;
+:edge_o4_name_Makemake a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p4_name_Earth a :AMR_Edge ;
+:edge_o5_name_Gonggong a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p5_name_Mars a :AMR_Edge ;
+:edge_o6_name_Quaoar a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p9_ARG0_s a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
-
-:edge_p9_ARG1_a a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_o7_name_Sedna a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p_a a :AMR_Edge ;
-    :hasAmrRole :role_domain ;
-    :hasRoleID "domain" .
+:edge_o8_name_Orcus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p_t a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
 
-:edge_s_ii a :AMR_Edge ;
+:edge_p2_d a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
@@ -230,6 +274,11 @@ ns1:root a owl:AnnotationProperty .
     :hasConceptLink "or" ;
     :label "conjunction-OR" .
 
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
 :phenomena_modality_obligation a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "obligate-01" ;
@@ -314,6 +363,14 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG9" .
 
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
 :role_have-degree-91 a owl:Class ;
     rdfs:subClassOf :AMR_Specific_Role ;
     :getPropertyType <net:specificProperty> .
@@ -327,26 +384,6 @@ ns1:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
-:role_op5 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op5" .
-
-:role_op6 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op6" .
-
-:role_op7 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op7" .
-
-:role_op8 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op8" .
-
-:role_op9 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op9" .
-
 :role_part a owl:Class ;
     rdfs:subClassOf :AMR_NonCore_Role ;
     :getDirectPropertyName "hasPart"^^xsd:string ;
@@ -360,15 +397,11 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:role_quant a owl:Class ;
-    rdfs:subClassOf :AMR_Specific_Role ;
-    :label "quant" .
-
-:root_WikiAbstract-SolarSystem-06 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> ;
-    :hasRootLeaf :leaf_planet_p ;
-    :hasSentenceID "WikiAbstract-SolarSystem-06" ;
-    :hasSentenceStatement "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." .
+:root_WikiAbstract-SolarSystem-15 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> ;
+    :hasRootLeaf :leaf_accept-01_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-15" ;
+    :hasSentenceStatement "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -433,67 +466,88 @@ cprm:targetOntologyURI a rdf:Property ;
     rdfs:range xsd:string ;
     rdfs:subPropertyOf cprm:configParamProperty .
 
-<https://tenet.tetras-libre.fr/extract-result#Earth> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Earth" ;
+<https://tenet.tetras-libre.fr/extract-result#Cerre> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Cerre" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#Mars> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Mars" ;
+<https://tenet.tetras-libre.fr/extract-result#Eris> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Eris" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Mercury" ;
+<https://tenet.tetras-libre.fr/extract-result#Gonggong> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Gonggong" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#Venus> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Venus" ;
+<https://tenet.tetras-libre.fr/extract-result#Haumea> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Haumea" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
-    rdfs:label "compose" ;
-    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#Makemake> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Makemake" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
-    rdfs:label "hasPart" ;
-    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#Orcus> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Orcus" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Pluto> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Pluto" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Quaoar> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Quaoar" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#inner-system> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ;
+<https://tenet.tetras-libre.fr/extract-result#Sedna> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Sedna" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#metal> a owl:Class ;
-    rdfs:label "metal" ;
+<https://tenet.tetras-libre.fr/extract-result#accept> a owl:Class ;
+    rdfs:label "accept" ;
     rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
-    rdfs:label "more" ;
+<https://tenet.tetras-libre.fr/extract-result#at-least> a owl:Class ;
+    rdfs:label "at-least" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#general> a owl:ObjectProperty ;
+    rdfs:label "general" ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#primary> a owl:Class ;
-    rdfs:label "primary" ;
-    rdfs:subClassOf sys:Undetermined_Thing ;
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#rock> a owl:Class ;
-    rdfs:label "rock" ;
-    rdfs:subClassOf sys:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#observe> a owl:ObjectProperty ;
+    rdfs:label "observe" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
-    rdfs:label "small" ;
+<https://tenet.tetras-libre.fr/extract-result#person> a owl:Class ;
+    rdfs:label "person" ;
     rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+<https://tenet.tetras-libre.fr/extract-result#trans-Neptunian> a owl:Class ;
+    rdfs:label "trans-Neptunian" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
     sys:fromStructure "unknown" .
 
 <https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
@@ -521,67 +575,64 @@ net:atomOf a owl:AnnotationProperty ;
     rdfs:label "atom of" ;
     rdfs:subPropertyOf net:typeProperty .
 
-net:atomProperty_compose_c a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_planet_p2,
-        net:atomClass_planet_p3,
-        net:atomClass_planet_p4,
-        net:atomClass_planet_p5,
-        net:phenomena_conjunction-AND_a ;
-    :role_ARG2 net:atomClass_metal_m,
-        net:atomClass_rock_r,
-        net:phenomena_conjunction-AND_a2 ;
-    :role_mod net:atomClass_primary_p6 ;
-    net:coverBaseNode :leaf_compose-01_c ;
-    net:coverNode :leaf_compose-01_c ;
-    net:hasNaming "compose" ;
-    net:hasPropertyName "compose" ;
-    net:hasPropertyName01 "composeing" ;
-    net:hasPropertyName10 "compose-by" ;
-    net:hasPropertyName12 "compose-of" ;
+net:atomProperty_general_g a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_accept_a,
+        net:atomProperty_accept_a ;
+    net:coverBaseNode :leaf_general-02_g ;
+    net:coverNode :leaf_general-02_g ;
+    net:hasNaming "general" ;
+    net:hasPropertyName "general" ;
+    net:hasPropertyName01 "generaling" ;
+    net:hasPropertyName10 "general-by" ;
+    net:hasPropertyName12 "general-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_accept-01_a .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_asteroid_a4,
+        net:atomClass_asteroid_a5,
+        net:atomClass_asteroid_a6,
+        net:atomClass_object_o3,
+        net:atomClass_object_o4,
+        net:atomClass_object_o5,
+        net:atomClass_object_o6,
+        net:atomClass_object_o7,
+        net:atomClass_object_o8,
+        net:phenomena_conjunction-AND_a3 ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_and_a,
-        :leaf_and_a2,
-        :leaf_primary_p6 .
-
-net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_system_s,
-        net:compositeClass_inner-system_s ;
-    :role_ARG1 net:atomClass_planet_p2,
-        net:atomClass_planet_p3,
-        net:atomClass_planet_p4,
-        net:atomClass_planet_p5,
-        net:phenomena_conjunction-AND_a ;
-    net:coverBaseNode :leaf_hasPart_p9 ;
-    net:coverNode :leaf_hasPart_p9 ;
-    net:hasNaming "hasPart" ;
-    net:hasPropertyName "hasPart" ;
-    net:hasPropertyName01 "hasParting" ;
-    net:hasPropertyName10 "hasPart-by" ;
-    net:hasPropertyName12 "hasPart-of" ;
+    net:targetArgumentNode :leaf_and_a3,
+        :leaf_object_o2 .
+
+net:atomProperty_observe_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_person_p ;
+    net:coverBaseNode :leaf_observe-01_o ;
+    net:coverNode :leaf_observe-01_o ;
+    net:hasNaming "observe" ;
+    net:hasPropertyName "observe" ;
+    net:hasPropertyName01 "observeing" ;
+    net:hasPropertyName10 "observe-by" ;
+    net:hasPropertyName12 "observe-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_and_a,
-        :leaf_system_s .
+    net:targetArgumentNode :leaf_person_p .
 
 net:atomType a owl:AnnotationProperty ;
     rdfs:label "atom type" ;
     rdfs:subPropertyOf net:objectType .
 
-net:compositeClass_terrestrial-planet_p a net:Composite_Class_Net ;
-    :role_domain net:phenomena_conjunction-AND_a ;
-    :role_mod net:atomClass_terrestrial_t ;
-    net:composeFrom net:atomClass_planet_p,
-        net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p,
-        :leaf_terrestrial_t ;
-    net:hasMotherClassNet net:atomClass_planet_p ;
-    net:hasNaming "terrestrial-planet" ;
-    net:hasStructure "unknown" .
-
 net:entityClass a owl:AnnotationProperty ;
     rdfs:label "entity class" ;
     rdfs:subPropertyOf net:objectValue .
@@ -677,24 +728,14 @@ net:has_target a owl:AnnotationProperty ;
     rdfs:label "has target" ;
     rdfs:subPropertyOf net:has_relation_value .
 
-net:individual_inner_ii a net:Individual_Net ;
-    net:composeFrom net:atomClass_inner_ii ;
-    net:coverBaseNode :leaf_inner_ii ;
-    net:coverNode :leaf_inner_ii ;
-    net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "inner" ;
-    net:hasMotherClassNet net:atomClass_inner_ii ;
-    net:hasNaming "inner" ;
-    net:hasStructure "unknown" .
-
-net:individual_terrestrial_t a net:Individual_Net ;
-    net:composeFrom net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_terrestrial_t ;
-    net:coverNode :leaf_terrestrial_t ;
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
     net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "terrestrial" ;
-    net:hasMotherClassNet net:atomClass_terrestrial_t ;
-    net:hasNaming "terrestrial" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
     net:hasStructure "unknown" .
 
 net:inverse_direction a owl:NamedIndividual .
@@ -721,21 +762,6 @@ net:modCat2 a owl:AnnotationProperty ;
 
 net:normal_direction a owl:NamedIndividual .
 
-net:phenomena_degree_h a net:Phenomena_Net ;
-    :role_ARG1 net:atomClass_planet_p2,
-        net:atomClass_planet_p3,
-        net:atomClass_planet_p4,
-        net:atomClass_planet_p5,
-        net:phenomena_conjunction-AND_a ;
-    :role_ARG2 net:atomClass_small_s2 ;
-    :role_ARG3 net:atomProperty_more_m2 ;
-    net:coverBaseNode :leaf_have-degree-91_h ;
-    net:coverNode :leaf_have-degree-91_h ;
-    net:hasNaming "degree" ;
-    net:hasPhenomenaRef "have-degree-91" ;
-    net:hasPhenomenaType :phenomena_degree ;
-    net:hasStructure "unknown" .
-
 net:relationOf a owl:AnnotationProperty ;
     rdfs:label "relation of" ;
     rdfs:subPropertyOf net:typeProperty .
@@ -748,28 +774,24 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> a ns3:compose-01 ;
-    ns3:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
-    ns3:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> a ns3:general-02 ;
+    ns3:general-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> a ns3:have-degree-91 ;
-    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
-    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
-    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> a ns1:AMR ;
-    ns1:has-id "WikiAbstract-SolarSystem-06" ;
-    ns1:has-sentence "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." ;
-    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> .
-
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> a ns2:system ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
-    ns2:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> a ns3:observe-01 ;
+    ns3:observe-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-15" ;
+    ns1:has-sentence "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> .
+
 <http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
 <http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
@@ -777,77 +799,69 @@ net:verbClass a owl:AnnotationProperty ;
 ns1:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:NamedEntity a ns1:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-EntityType",
-        "AMR-Term" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
-:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:compose-01 ;
-    :label "compose-01" .
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
-:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns3:have-degree-91 ;
-    :hasPhenomenaLink :phenomena_degree ;
-    :label "have-degree-91" .
+:concept_accept-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:accept-01 ;
+    :label "accept-01" .
 
-:concept_inner rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:inner ;
-    :label "inner" .
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
 
-:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:metal ;
-    :label "metal" .
+:concept_at-least rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:at-least ;
+    :label "at-least" .
 
-:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns1:more ;
-    :label "more" .
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
 
-:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns2:part ;
-    :isReifiedConcept true ;
-    :label "hasPart" .
+:concept_general-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:general-02 ;
+    :label "general-02" .
 
-:concept_primary rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:primary ;
-    :label "primary" .
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
 
-:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:rock ;
-    :label "rock" .
+:concept_observe-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:observe-01 ;
+    :label "observe-01" .
 
-:concept_small rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:small ;
-    :label "small" .
+:concept_person rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#person> ;
+    :label "person" .
 
-:concept_system rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:system ;
-    :label "system" .
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
 
-:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:terrestrial ;
-    :label "terrestrial" .
+:concept_trans-Neptunian rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:trans-Neptunian ;
+    :label "trans-Neptunian" .
 
-:role_ARG0 a owl:Class,
+:role_ARG2 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG0" .
+    :label "ARG2" .
 
 :role_ARG3 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG3" .
 
-:role_domain a owl:Class,
+:role_op1 a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :hasRelationName "domain" ;
-    :label "domain" ;
-    :toReifyAsConcept "domain" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
 
 :role_op3 a owl:Class,
         net:Relation ;
@@ -859,81 +873,123 @@ ns1:NamedEntity a ns1:Concept,
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op4" .
 
+:role_op5 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
 :variable_a a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
     :label "a" .
 
 :variable_a2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
     :label "a2" .
 
-:variable_c a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> ;
-    :label "c" .
+:variable_a3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    :label "a3" .
+
+:variable_a4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    :label "a4" ;
+    :name "Cerre" .
 
-:variable_h a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> ;
-    :label "h" .
+:variable_a5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    :label "a5" ;
+    :name "Eris" .
+
+:variable_a6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    :label "a6" ;
+    :name "Haumea" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
+    :label "d" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> ;
+    :label "g" .
 
 :variable_ii a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> ;
     :label "ii" .
 
-:variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
-    :label "m" .
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    :label "o2" .
 
-:variable_m2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
-    :label "m2" .
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    :label "o3" ;
+    :name "Pluto" .
+
+:variable_o4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    :label "o4" ;
+    :name "Makemake" .
+
+:variable_o5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    :label "o5" ;
+    :name "Gonggong" .
+
+:variable_o6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    :label "o6" ;
+    :name "Quaoar" .
+
+:variable_o7 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    :label "o7" ;
+    :name "Sedna" .
+
+:variable_o8 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
+    :label "o8" ;
+    :name "Orcus" .
 
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
     :label "p" .
 
 :variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
-    :label "p2" ;
-    :name "Mercury" .
-
-:variable_p3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
-    :label "p3" ;
-    :name "Venus" .
-
-:variable_p4 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
-    :label "p4" ;
-    :name "Earth" .
-
-:variable_p5 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
-    :label "p5" ;
-    :name "Mars" .
-
-:variable_p6 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
-    :label "p6" .
-
-:variable_p9 a ns2:part,
-        :AMR_Variable ;
-    :isReifiedVariable true ;
-    :label "p9" .
-
-:variable_r a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
-    :label "r" .
-
-:variable_s a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> ;
-    :label "s" .
-
-:variable_s2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
-    :label "s2" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    :label "p2" .
 
 :variable_t a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
     :label "t" .
 
 sys:Degree a owl:Class ;
@@ -944,242 +1000,291 @@ sys:Feature a owl:Class ;
 
 sys:Out_AnnotationProperty a owl:AnnotationProperty .
 
-<https://tenet.tetras-libre.fr/extract-result#inner> a owl:Class,
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
         owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#inner> ;
-    rdfs:label "inner" ;
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
     rdfs:subClassOf sys:Undetermined_Thing ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
-    rdfs:label "system" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#terrestrial> ;
-    rdfs:label "terrestrial" ;
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
     rdfs:subClassOf sys:Undetermined_Thing ;
     sys:fromStructure "unknown" .
 
 net:Axiom_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
 net:Feature a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
-net:atomClass_primary_p6 a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_primary_p6 ;
-    net:coverNode :leaf_primary_p6 ;
-    net:hasClassName "primary" ;
-    net:hasNaming "primary" ;
-    net:hasStructure "unknown" .
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:atomClass_small_s2 a net:Atom_Class_Net,
+net:atomClass_accept_a a net:Atom_Class_Net,
         net:Class_Net ;
-    net:coverBaseNode :leaf_small_s2 ;
-    net:coverNode :leaf_small_s2 ;
-    net:hasClassName "small" ;
+    :role_ARG0 net:atomClass_person_p ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG3 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:composeFrom net:atomProperty_accept_a ;
+    net:coverBaseNode :leaf_accept-01_a ;
+    net:coverNode :leaf_accept-01_a ;
+    net:hasClassName "accept" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "small" ;
+    net:hasNaming "accept" ;
     net:hasStructure "unknown" .
 
-net:atomProperty_more_m2 a net:Atom_Property_Net ;
-    net:coverBaseNode :leaf_more_m2 ;
-    net:coverNode :leaf_more_m2 ;
-    net:hasNaming "more" ;
-    net:hasPropertyName "more" ;
-    net:hasPropertyName01 "moreing" ;
-    net:hasPropertyName10 "more-by" ;
-    net:hasPropertyName12 "more-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" .
-
-net:compositeClass_inner-system_s a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_inner_ii ;
-    net:composeFrom net:atomClass_inner_ii,
-        net:atomClass_system_s ;
-    net:coverBaseNode :leaf_system_s ;
-    net:coverNode :leaf_inner_ii,
-        :leaf_system_s ;
-    net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_system_s ;
-    net:hasNaming "inner-system" ;
+net:atomClass_at-least_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_at-least_a2 ;
+    net:coverNode :leaf_at-least_a2 ;
+    net:hasClassName "at-least" ;
+    net:hasNaming "at-least" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_trans-Neptunian_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_trans-Neptunian_t ;
+    net:coverNode :leaf_trans-Neptunian_t ;
+    net:hasClassName "trans-Neptunian" ;
+    net:hasNaming "trans-Neptunian" ;
     net:hasStructure "unknown" .
 
 net:has_value a owl:AnnotationProperty ;
     rdfs:subPropertyOf net:netProperty .
 
-net:individual_Earth_p4 a net:Individual_Net ;
-    :role_name net:value_Earth_blankNode ;
-    net:coverBaseNode :leaf_planet_p4 ;
-    net:coverNode :leaf_planet_p4 ;
-    net:hasIndividualLabel "Earth" ;
-    net:hasMotherClassNet net:atomClass_planet_p4 ;
-    net:hasNaming "Earth" ;
+net:individual_Cerre_a4 a net:Individual_Net ;
+    :role_name net:value_Cerre_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a4 ;
+    net:coverNode :leaf_asteroid_a4 ;
+    net:hasIndividualLabel "Cerre" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a4 ;
+    net:hasNaming "Cerre" ;
     net:hasStructure "unknown" .
 
-net:individual_Mars_p5 a net:Individual_Net ;
-    :role_name net:value_Mars_blankNode ;
-    net:coverBaseNode :leaf_planet_p5 ;
-    net:coverNode :leaf_planet_p5 ;
-    net:hasIndividualLabel "Mars" ;
-    net:hasMotherClassNet net:atomClass_planet_p5 ;
-    net:hasNaming "Mars" ;
+net:individual_Eris_a5 a net:Individual_Net ;
+    :role_name net:value_Eris_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a5 ;
+    net:coverNode :leaf_asteroid_a5 ;
+    net:hasIndividualLabel "Eris" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a5 ;
+    net:hasNaming "Eris" ;
     net:hasStructure "unknown" .
 
-net:individual_Mercury_p2 a net:Individual_Net ;
-    :role_name net:value_Mercury_blankNode ;
-    net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_planet_p2 ;
-    net:hasIndividualLabel "Mercury" ;
-    net:hasMotherClassNet net:atomClass_planet_p2 ;
-    net:hasNaming "Mercury" ;
+net:individual_Gonggong_o5 a net:Individual_Net ;
+    :role_name net:value_Gonggong_blankNode ;
+    net:coverBaseNode :leaf_object_o5 ;
+    net:coverNode :leaf_object_o5 ;
+    net:hasIndividualLabel "Gonggong" ;
+    net:hasMotherClassNet net:atomClass_object_o5 ;
+    net:hasNaming "Gonggong" ;
+    net:hasStructure "unknown" .
+
+net:individual_Haumea_a6 a net:Individual_Net ;
+    :role_name net:value_Haumea_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a6 ;
+    net:coverNode :leaf_asteroid_a6 ;
+    net:hasIndividualLabel "Haumea" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a6 ;
+    net:hasNaming "Haumea" ;
+    net:hasStructure "unknown" .
+
+net:individual_Makemake_o4 a net:Individual_Net ;
+    :role_name net:value_Makemake_blankNode ;
+    net:coverBaseNode :leaf_object_o4 ;
+    net:coverNode :leaf_object_o4 ;
+    net:hasIndividualLabel "Makemake" ;
+    net:hasMotherClassNet net:atomClass_object_o4 ;
+    net:hasNaming "Makemake" ;
+    net:hasStructure "unknown" .
+
+net:individual_Orcus_o8 a net:Individual_Net ;
+    :role_name net:value_Orcus_blankNode ;
+    net:coverBaseNode :leaf_object_o8 ;
+    net:coverNode :leaf_object_o8 ;
+    net:hasIndividualLabel "Orcus" ;
+    net:hasMotherClassNet net:atomClass_object_o8 ;
+    net:hasNaming "Orcus" ;
+    net:hasStructure "unknown" .
+
+net:individual_Pluto_o3 a net:Individual_Net ;
+    :role_name net:value_Pluto_blankNode ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasIndividualLabel "Pluto" ;
+    net:hasMotherClassNet net:atomClass_object_o3 ;
+    net:hasNaming "Pluto" ;
+    net:hasStructure "unknown" .
+
+net:individual_Quaoar_o6 a net:Individual_Net ;
+    :role_name net:value_Quaoar_blankNode ;
+    net:coverBaseNode :leaf_object_o6 ;
+    net:coverNode :leaf_object_o6 ;
+    net:hasIndividualLabel "Quaoar" ;
+    net:hasMotherClassNet net:atomClass_object_o6 ;
+    net:hasNaming "Quaoar" ;
     net:hasStructure "unknown" .
 
-net:individual_Venus_p3 a net:Individual_Net ;
-    :role_name net:value_Venus_blankNode ;
-    net:coverBaseNode :leaf_planet_p3 ;
-    net:coverNode :leaf_planet_p3 ;
-    net:hasIndividualLabel "Venus" ;
-    net:hasMotherClassNet net:atomClass_planet_p3 ;
-    net:hasNaming "Venus" ;
+net:individual_Sedna_o7 a net:Individual_Net ;
+    :role_name net:value_Sedna_blankNode ;
+    net:coverBaseNode :leaf_object_o7 ;
+    net:coverNode :leaf_object_o7 ;
+    net:hasIndividualLabel "Sedna" ;
+    net:hasMotherClassNet net:atomClass_object_o7 ;
+    net:hasNaming "Sedna" ;
     net:hasStructure "unknown" .
 
 net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
-    :role_op1 net:atomClass_rock_r ;
-    :role_op2 net:atomClass_metal_m ;
-    net:coverBaseNode :leaf_and_a2 ;
-    net:coverNode :leaf_and_a2 ;
+net:phenomena_conjunction-AND_a3 a net:Phenomena_Net ;
+    :role_mod net:atomClass_trans-Neptunian_t ;
+    :role_op1 net:atomClass_asteroid_a4,
+        net:individual_Cerre_a4 ;
+    :role_op2 net:atomClass_object_o3,
+        net:individual_Pluto_o3 ;
+    :role_op3 net:atomClass_asteroid_a5,
+        net:individual_Eris_a5 ;
+    :role_op4 net:atomClass_asteroid_a6,
+        net:individual_Haumea_a6 ;
+    :role_op5 net:atomClass_object_o4,
+        net:individual_Makemake_o4 ;
+    :role_op6 net:atomClass_object_o5,
+        net:individual_Gonggong_o5 ;
+    :role_op7 net:atomClass_object_o6,
+        net:individual_Quaoar_o6 ;
+    :role_op8 net:atomClass_object_o7,
+        net:individual_Sedna_o7 ;
+    :role_op9 net:atomClass_object_o8,
+        net:individual_Orcus_o8 ;
+    net:coverBaseNode :leaf_and_a3 ;
+    net:coverNode :leaf_and_a3 ;
     net:hasNaming "conjunction-AND" ;
     net:hasPhenomenaRef "and" ;
     net:hasPhenomenaType :phenomena_conjunction_and ;
     net:hasStructure "unknown" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> a ns1:and ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> a ns2:at-least ;
+    ns2:op1 "9" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> a ns2:inner ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> a ns1:and ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    ns2:op5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    ns2:op6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    ns2:op7 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    ns2:op8 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    ns2:op9 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> a ns2:metal ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> a ns2:asteroid ;
+    rdfs:label "Cerre" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> a ns1:more ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> a ns2:asteroid ;
+    rdfs:label "Eris" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> a <http://amr.isi.edu/entity-types#planet> ;
-    ns2:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> a ns2:asteroid ;
+    rdfs:label "Haumea" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Mercury" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> a ns2:dwarf ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Venus" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> a ns2:object ;
+    rdfs:label "Pluto" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Earth" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> a ns2:object ;
+    rdfs:label "Makemake" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Mars" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> a ns2:object ;
+    rdfs:label "Gonggong" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> a ns2:primary ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> a ns2:object ;
+    rdfs:label "Quaoar" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> a ns2:rock ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> a ns2:object ;
+    rdfs:label "Sedna" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> a ns2:small ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> a ns2:object ;
+    rdfs:label "Orcus" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> a ns2:terrestrial ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:compose-01 a ns1:Frame ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> a ns2:trans-Neptunian ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:have-degree-91 a ns1:Frame ;
+<http://amr.isi.edu/entity-types#person> a ns1:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:inner a ns1:Concept ;
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:metal a ns1:Concept ;
+ns3:accept-01 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:part a ns1:Role ;
+ns3:general-02 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:primary a ns1:Concept ;
+ns3:include-91 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:rock a ns1:Concept ;
+ns3:observe-01 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:small a ns1:Concept ;
+ns2:at-least a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:system a ns1:Concept ;
+ns2:dwarf a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:terrestrial a ns1:Concept ;
+ns2:trans-Neptunian a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:Frame a ns1:Concept,
+ns1:NamedEntity a ns1:Concept,
         owl:Class,
         owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:more a ns1:Concept ;
+ns1:and a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
-:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns1:and ;
-    :hasPhenomenaLink :phenomena_conjunction_and ;
-    :label "and" .
-
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_compose-01_c a :AMR_Leaf ;
-    :edge_c_a :leaf_and_a ;
-    :edge_c_a2 :leaf_and_a2 ;
-    :edge_c_p6 :leaf_primary_p6 ;
-    :hasConcept :concept_compose-01 ;
-    :hasVariable :variable_c .
-
-:leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_s :leaf_system_s ;
-    :edge_p9_ARG1_a :leaf_and_a ;
-    :hasConcept :concept_part ;
-    :hasVariable :variable_p9 ;
-    :isReifiedLeaf true .
-
-:leaf_have-degree-91_h a :AMR_Leaf ;
-    :edge_h_a :leaf_and_a ;
-    :edge_h_m2 :leaf_more_m2 ;
-    :edge_h_s2 :leaf_small_s2 ;
-    :hasConcept :concept_have-degree-91 ;
-    :hasVariable :variable_h .
+:leaf_general-02_g a :AMR_Leaf ;
+    :edge_g_a :leaf_accept-01_a ;
+    :hasConcept :concept_general-02 ;
+    :hasVariable :variable_g .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_a3 :leaf_and_a3 ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_observe-01_o a :AMR_Leaf ;
+    :edge_o_p :leaf_person_p ;
+    :hasConcept :concept_observe-01 ;
+    :hasVariable :variable_o .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1188,100 +1293,156 @@ ns1:more a ns1:Concept ;
         "neither" ;
     :label "conjunction" .
 
-:phenomena_degree a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena ;
-    :hasConceptLink "have-degree-91" ;
-    :label "degree" .
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
 
-:role_ARG2 a owl:Class,
+:role_ARG0 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG2" .
-
-:role_op1 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+    :label "ARG0" .
 
-:role_op2 a owl:Class,
+:role_mod a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op2" .
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
 
-:value_Earth a :AMR_Value ;
-    rdfs:label "Earth" .
+:value_Cerre a :AMR_Value ;
+    rdfs:label "Cerre" .
 
-:value_Mars a :AMR_Value ;
-    rdfs:label "Mars" .
+:value_Eris a :AMR_Value ;
+    rdfs:label "Eris" .
 
-:value_Mercury a :AMR_Value ;
-    rdfs:label "Mercury" .
+:value_Gonggong a :AMR_Value ;
+    rdfs:label "Gonggong" .
 
-:value_Venus a :AMR_Value ;
-    rdfs:label "Venus" .
+:value_Haumea a :AMR_Value ;
+    rdfs:label "Haumea" .
 
-net:Composite_Class_Net a owl:Class ;
-    rdfs:subClassOf net:Class_Net .
+:value_Makemake a :AMR_Value ;
+    rdfs:label "Makemake" .
+
+:value_Orcus a :AMR_Value ;
+    rdfs:label "Orcus" .
+
+:value_Pluto a :AMR_Value ;
+    rdfs:label "Pluto" .
+
+:value_Quaoar a :AMR_Value ;
+    rdfs:label "Quaoar" .
+
+:value_Sedna a :AMR_Value ;
+    rdfs:label "Sedna" .
 
 net:Property_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_metal_m a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_metal_m ;
-    net:coverNode :leaf_metal_m ;
-    net:hasClassName "metal" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "metal" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_planet_p a net:Atom_Class_Net,
+net:atomProperty_accept_a a net:Atom_Property_Net,
         net:Deprecated_Net ;
-    :role_domain net:phenomena_conjunction-AND_a ;
-    :role_mod net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p ;
-    net:hasClassName "planet" ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_rock_r a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_rock_r ;
-    net:coverNode :leaf_rock_r ;
-    net:hasClassName "rock" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "rock" ;
+    :role_ARG0 net:atomClass_person_p ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG3 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_accept-01_a ;
+    net:coverNode :leaf_accept-01_a ;
+    net:hasNaming "accept" ;
+    net:hasPropertyName "accept" ;
+    net:hasPropertyName01 "accepting" ;
+    net:hasPropertyName10 "accept-by" ;
+    net:hasPropertyName12 "accept-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_person_p,
+        :leaf_planet_p2 .
+
+net:compositeClass_dwarf-planet_p2 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p2 ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
     net:hasStructure "unknown" .
 
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-net:value_Earth_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Earth ;
-    net:hasNaming "Earth" ;
+net:value_Cerre_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Cerre ;
+    net:hasNaming "Cerre" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "Earth" .
+    net:hasValueLabel "Cerre" .
 
-net:value_Mars_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Mars ;
-    net:hasNaming "Mars" ;
+net:value_Eris_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Eris ;
+    net:hasNaming "Eris" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "Mars" .
+    net:hasValueLabel "Eris" .
 
-net:value_Mercury_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Mercury ;
-    net:hasNaming "Mercury" ;
+net:value_Gonggong_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Gonggong ;
+    net:hasNaming "Gonggong" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "Mercury" .
+    net:hasValueLabel "Gonggong" .
 
-net:value_Venus_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Venus ;
-    net:hasNaming "Venus" ;
+net:value_Haumea_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Haumea ;
+    net:hasNaming "Haumea" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "Venus" .
+    net:hasValueLabel "Haumea" .
 
-ns1:and a ns1:Concept ;
+net:value_Makemake_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Makemake ;
+    net:hasNaming "Makemake" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Makemake" .
+
+net:value_Orcus_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Orcus ;
+    net:hasNaming "Orcus" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Orcus" .
+
+net:value_Pluto_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Pluto ;
+    net:hasNaming "Pluto" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Pluto" .
+
+net:value_Quaoar_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Quaoar ;
+    net:hasNaming "Quaoar" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Quaoar" .
+
+net:value_Sedna_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Sedna ;
+    net:hasNaming "Sedna" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Sedna" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> a ns3:accept-01 ;
+    ns3:accept-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    ns3:accept-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    ns3:accept-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> a <http://amr.isi.edu/entity-types#person> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1290,12 +1451,13 @@ ns1:and a ns1:Concept ;
 :AMR_Phenomena a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:AMR_Predicat_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Specific_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:asteroid ;
+    :label "asteroid" .
+
 :fromAmrLk a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
@@ -1306,26 +1468,13 @@ ns1:and a ns1:Concept ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_metal_m a :AMR_Leaf ;
-    :hasConcept :concept_metal ;
-    :hasVariable :variable_m .
-
-:leaf_more_m2 a :AMR_Leaf ;
-    :hasConcept :concept_more ;
-    :hasVariable :variable_m2 .
-
-:leaf_rock_r a :AMR_Leaf ;
-    :hasConcept :concept_rock ;
-    :hasVariable :variable_r .
-
-:leaf_small_s2 a :AMR_Leaf ;
-    :hasConcept :concept_small ;
-    :hasVariable :variable_s2 .
+:leaf_at-least_a2 a :AMR_Leaf ;
+    :hasConcept :concept_at-least ;
+    :hasVariable :variable_a2 .
 
-:phenomena_conjunction_and a owl:Class ;
-    rdfs:subClassOf :phenomena_conjunction ;
-    :hasConceptLink "and" ;
-    :label "conjunction-AND" .
+:leaf_trans-Neptunian_t a :AMR_Leaf ;
+    :hasConcept :concept_trans-Neptunian ;
+    :hasVariable :variable_t .
 
 :phenomena_modality a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena .
@@ -1335,240 +1484,284 @@ ns1:and a ns1:Concept ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG1" .
 
-:role_mod a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :getDirectPropertyName "hasFeature"^^xsd:string ;
-    :getPropertyType rdfs:subClassOf,
-        owl:ObjectProperty ;
-    :label "mod" ;
-    :toReifyAsConcept "mod" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
-
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-net:Atom_Property_Net a owl:Class ;
-    rdfs:subClassOf net:Property_Net .
-
 net:Net_Structure a owl:Class ;
     rdfs:label "Semantic Net Structure" ;
     rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
 
-net:Phenomena_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+net:atomClass_asteroid_a4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Cerre_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a4 ;
+    net:coverNode :leaf_asteroid_a4 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "unknown" .
 
-net:atomClass_system_s a net:Atom_Class_Net,
+net:atomClass_asteroid_a5 a net:Atom_Class_Net,
         net:Class_Net,
         net:Deprecated_Net ;
-    :role_mod net:atomClass_inner_ii ;
-    net:coverBaseNode :leaf_system_s ;
-    net:coverNode :leaf_system_s ;
-    net:hasClassName "system" ;
+    :role_name net:value_Eris_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a5 ;
+    net:coverNode :leaf_asteroid_a5 ;
+    net:hasClassName "asteroid" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "system" ;
+    net:hasNaming "asteroid" ;
     net:hasStructure "unknown" .
 
-net:has_relation_value a owl:AnnotationProperty ;
-    rdfs:label "has relation value" ;
-    rdfs:subPropertyOf net:has_object .
+net:atomClass_asteroid_a6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Haumea_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a6 ;
+    net:coverNode :leaf_asteroid_a6 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "unknown" .
 
-:AMR_Element a owl:Class ;
-    rdfs:subClassOf :AMR_Structure .
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_at-least_a2 ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-:leaf_and_a2 a :AMR_Leaf ;
-    :edge_a2_m :leaf_metal_m ;
-    :edge_a2_r :leaf_rock_r ;
-    :hasConcept :concept_and ;
-    :hasVariable :variable_a2 .
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Pluto_blankNode ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-:leaf_primary_p6 a :AMR_Leaf ;
-    :hasConcept :concept_primary ;
-    :hasVariable :variable_p6 .
+net:atomClass_object_o4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Makemake_blankNode ;
+    net:coverBaseNode :leaf_object_o4 ;
+    net:coverNode :leaf_object_o4 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-:role_name a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
+net:atomClass_object_o5 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Gonggong_blankNode ;
+    net:coverBaseNode :leaf_object_o5 ;
+    net:coverNode :leaf_object_o5 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-sys:Undetermined_Thing a owl:Class ;
-    rdfs:subClassOf sys:Out_Structure .
+net:atomClass_object_o6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Quaoar_blankNode ;
+    net:coverBaseNode :leaf_object_o6 ;
+    net:coverNode :leaf_object_o6 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-net:Value_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+net:atomClass_object_o7 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Sedna_blankNode ;
+    net:coverBaseNode :leaf_object_o7 ;
+    net:coverNode :leaf_object_o7 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-net:typeProperty a owl:AnnotationProperty ;
-    rdfs:label "type property" .
+net:atomClass_object_o8 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Orcus_blankNode ;
+    net:coverBaseNode :leaf_object_o8 ;
+    net:coverNode :leaf_object_o8 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_person_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_person_p ;
+    net:coverNode :leaf_person_p ;
+    net:hasClassName "person" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "person" ;
+    net:hasStructure "unknown" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> a ns1:and ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
-    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
-    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
+ns2:asteroid a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:FrameRole a ns1:Role,
+ns1:Frame a ns1:Concept,
         owl:Class,
         owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:label "AMR-PropBank-Frame" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_NonCore_Role a owl:Class ;
-    rdfs:subClassOf :AMR_Role .
-
-:AMR_Role a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-:AMR_Value a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
-    :label "planet" .
-
-:leaf_planet_p a :AMR_Leaf ;
-    :edge_p_a :leaf_and_a ;
-    :edge_p_t :leaf_terrestrial_t ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p .
-
-:leaf_planet_p2 a :AMR_Leaf ;
-    :edge_p2_name_Mercury :value_Mercury ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p2 .
-
-:leaf_planet_p3 a :AMR_Leaf ;
-    :edge_p3_name_Venus :value_Venus ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p3 .
-
-:leaf_planet_p4 a :AMR_Leaf ;
-    :edge_p4_name_Earth :value_Earth ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p4 .
-
-:leaf_planet_p5 a :AMR_Leaf ;
-    :edge_p5_name_Mars :value_Mars ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p5 .
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
 
-sys:Out_ObjectProperty a owl:ObjectProperty .
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
-sys:Out_Structure a owl:Class ;
-    rdfs:label "Output Ontology Structure" .
+:leaf_and_a3 a :AMR_Leaf ;
+    :edge_a3_a4 :leaf_asteroid_a4 ;
+    :edge_a3_a5 :leaf_asteroid_a5 ;
+    :edge_a3_a6 :leaf_asteroid_a6 ;
+    :edge_a3_o3 :leaf_object_o3 ;
+    :edge_a3_o4 :leaf_object_o4 ;
+    :edge_a3_o5 :leaf_object_o5 ;
+    :edge_a3_o6 :leaf_object_o6 ;
+    :edge_a3_o7 :leaf_object_o7 ;
+    :edge_a3_o8 :leaf_object_o8 ;
+    :edge_a3_t :leaf_trans-Neptunian_t ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a3 .
 
-<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
-    rdfs:label "planet" ;
-    rdfs:subClassOf sys:Undetermined_Thing ;
-    sys:fromStructure "unknown" .
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
 
-net:atomClass_inner_ii a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_inner_ii ;
-    net:coverNode :leaf_inner_ii ;
-    net:hasClassName "inner" ;
-    net:hasNaming "inner" ;
-    net:hasStructure "unknown" .
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
 
 net:atomClass_planet_p2 a net:Atom_Class_Net,
-        net:Class_Net,
         net:Deprecated_Net ;
-    :role_name net:value_Mercury_blankNode ;
+    :role_mod net:atomClass_dwarf_d ;
     net:coverBaseNode :leaf_planet_p2 ;
     net:coverNode :leaf_planet_p2 ;
     net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
     net:hasNaming "planet" ;
     net:hasStructure "unknown" .
 
-net:atomClass_planet_p3 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Venus_blankNode ;
-    net:coverBaseNode :leaf_planet_p3 ;
-    net:coverNode :leaf_planet_p3 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
 
-net:atomClass_planet_p4 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Earth_blankNode ;
-    net:coverBaseNode :leaf_planet_p4 ;
-    net:coverNode :leaf_planet_p4 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
 
-net:atomClass_planet_p5 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Mars_blankNode ;
-    net:coverBaseNode :leaf_planet_p5 ;
-    net:coverNode :leaf_planet_p5 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
 
-net:atomClass_terrestrial_t a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_terrestrial_t ;
-    net:coverNode :leaf_terrestrial_t ;
-    net:hasClassName "terrestrial" ;
-    net:hasNaming "terrestrial" ;
-    net:hasStructure "unknown" .
+:leaf_asteroid_a4 a :AMR_Leaf ;
+    :edge_a4_name_Cerre :value_Cerre ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a4 .
+
+:leaf_asteroid_a5 a :AMR_Leaf ;
+    :edge_a5_name_Eris :value_Eris ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a5 .
+
+:leaf_asteroid_a6 a :AMR_Leaf ;
+    :edge_a6_name_Haumea :value_Haumea ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a6 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :edge_o3_name_Pluto :value_Pluto ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_object_o4 a :AMR_Leaf ;
+    :edge_o4_name_Makemake :value_Makemake ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o4 .
+
+:leaf_object_o5 a :AMR_Leaf ;
+    :edge_o5_name_Gonggong :value_Gonggong ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o5 .
+
+:leaf_object_o6 a :AMR_Leaf ;
+    :edge_o6_name_Quaoar :value_Quaoar ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o6 .
+
+:leaf_object_o7 a :AMR_Leaf ;
+    :edge_o7_name_Sedna :value_Sedna ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o7 .
+
+:leaf_object_o8 a :AMR_Leaf ;
+    :edge_o8_name_Orcus :value_Orcus ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o8 .
 
-net:netProperty a owl:AnnotationProperty ;
-    rdfs:label "netProperty" .
+sys:Out_ObjectProperty a owl:ObjectProperty .
 
-net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
-    :role_op1 net:atomClass_planet_p2,
-        net:individual_Mercury_p2 ;
-    :role_op2 net:atomClass_planet_p3,
-        net:individual_Venus_p3 ;
-    :role_op3 net:atomClass_planet_p4,
-        net:individual_Earth_p4 ;
-    :role_op4 net:atomClass_planet_p5,
-        net:individual_Mars_p5 ;
-    net:coverBaseNode :leaf_and_a ;
-    net:coverNode :leaf_and_a ;
-    net:hasNaming "conjunction-AND" ;
-    net:hasPhenomenaRef "and" ;
-    net:hasPhenomenaType :phenomena_conjunction_and ;
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
     net:hasStructure "unknown" .
 
-<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
-    rdfs:subClassOf :AMR_Linked_Data .
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
 
 :AMR_ObjectProperty a owl:ObjectProperty ;
     rdfs:subPropertyOf owl:topObjectProperty .
 
 :AMR_Structure a owl:Class .
 
-:leaf_inner_ii a :AMR_Leaf ;
-    :hasConcept :concept_inner ;
-    :hasVariable :variable_ii .
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
 
-:leaf_system_s a :AMR_Leaf ;
-    :edge_s_ii :leaf_inner_ii ;
-    :hasConcept :concept_system ;
-    :hasVariable :variable_s .
+:leaf_object_o2 a :AMR_Leaf ;
+    :edge_o2_a2 :leaf_at-least_a2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
 
-:leaf_terrestrial_t a :AMR_Leaf ;
-    :hasConcept :concept_terrestrial ;
-    :hasVariable :variable_t .
+:leaf_person_p a :AMR_Leaf ;
+    :hasConcept :concept_person ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
 
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
-net:Deprecated_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
 
-net:Individual_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
 rdf:Property a owl:Class .
 
@@ -1578,14 +1771,20 @@ rdf:Property a owl:Class .
 :AMR_Term_Concept a owl:Class ;
     rdfs:subClassOf :AMR_Concept .
 
-:leaf_and_a a :AMR_Leaf ;
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:leaf_accept-01_a a :AMR_Leaf ;
+    :edge_a_o2 :leaf_object_o2 ;
+    :edge_a_p :leaf_person_p ;
     :edge_a_p2 :leaf_planet_p2 ;
-    :edge_a_p3 :leaf_planet_p3 ;
-    :edge_a_p4 :leaf_planet_p4 ;
-    :edge_a_p5 :leaf_planet_p5 ;
-    :hasConcept :concept_and ;
+    :hasConcept :concept_accept-01 ;
     :hasVariable :variable_a .
 
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
@@ -1593,25 +1792,42 @@ net:has_object a owl:AnnotationProperty ;
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
 :AMR_AnnotationProperty a owl:AnnotationProperty .
 
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
 net:Class_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Relation a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
 
 net:Atom_Class_Net a owl:Class ;
     rdfs:subClassOf net:Class_Net .
 
-sys:Entity a owl:Class ;
-    rdfs:subClassOf sys:Out_Structure .
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
 
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
index 3e477f48e92781e0165e7fe81ba72f525d6cafab..42eebb1d05226ce0f1535cb200fff87b7c7bd8fa 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -28,15 +28,19 @@ ns1:Role a rdfs:Class,
     ns1:hasSentence "Earth is a planet." ;
     ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns3:compose-01.ARG1 a ns3:FrameRole .
+ns3:accept-01.ARG0 a ns3:FrameRole .
 
-ns3:compose-01.ARG2 a ns3:FrameRole .
+ns3:accept-01.ARG1 a ns3:FrameRole .
 
-ns3:have-degree-91.ARG1 a ns3:FrameRole .
+ns3:accept-01.ARG3 a ns3:FrameRole .
 
-ns3:have-degree-91.ARG2 a ns3:FrameRole .
+ns3:general-02.ARG1 a ns3:FrameRole .
 
-ns3:have-degree-91.ARG3 a ns3:FrameRole .
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:observe-01.ARG0 a ns3:FrameRole .
 
 ns2:domain a ns1:Role,
         owl:AnnotationProperty,
@@ -52,6 +56,18 @@ ns2:op3 a ns1:Role .
 
 ns2:op4 a ns1:Role .
 
+ns2:op5 a ns1:Role .
+
+ns2:op6 a ns1:Role .
+
+ns2:op7 a ns1:Role .
+
+ns2:op8 a ns1:Role .
+
+ns2:op9 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
 ns1:hasID a owl:AnnotationProperty .
 
 ns1:hasSentence a owl:AnnotationProperty .
@@ -69,87 +85,115 @@ ns1:root a owl:AnnotationProperty .
 :AMR_Root a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:edge_a2_m a :AMR_Edge ;
-    :hasAmrRole :role_op2 ;
-    :hasRoleID "op2" .
-
-:edge_a2_r a :AMR_Edge ;
-    :hasAmrRole :role_op1 ;
-    :hasRoleID "op1" .
-
-:edge_a_p2 a :AMR_Edge ;
+:edge_a3_a4 a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_a_p3 a :AMR_Edge ;
-    :hasAmrRole :role_op2 ;
-    :hasRoleID "op2" .
-
-:edge_a_p4 a :AMR_Edge ;
+:edge_a3_a5 a :AMR_Edge ;
     :hasAmrRole :role_op3 ;
     :hasRoleID "op3" .
 
-:edge_a_p5 a :AMR_Edge ;
+:edge_a3_a6 a :AMR_Edge ;
     :hasAmrRole :role_op4 ;
     :hasRoleID "op4" .
 
-:edge_c_a a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_a3_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
 
-:edge_c_a2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
+:edge_a3_o4 a :AMR_Edge ;
+    :hasAmrRole :role_op5 ;
+    :hasRoleID "op5" .
+
+:edge_a3_o5 a :AMR_Edge ;
+    :hasAmrRole :role_op6 ;
+    :hasRoleID "op6" .
 
-:edge_c_p6 a :AMR_Edge ;
+:edge_a3_o6 a :AMR_Edge ;
+    :hasAmrRole :role_op7 ;
+    :hasRoleID "op7" .
+
+:edge_a3_o7 a :AMR_Edge ;
+    :hasAmrRole :role_op8 ;
+    :hasRoleID "op8" .
+
+:edge_a3_o8 a :AMR_Edge ;
+    :hasAmrRole :role_op9 ;
+    :hasRoleID "op9" .
+
+:edge_a3_t a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
-:edge_h_a a :AMR_Edge ;
+:edge_a4_name_Cerre a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a5_name_Eris a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a6_name_Haumea a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a_o2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_h_m2 a :AMR_Edge ;
+:edge_a_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_a_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG3 ;
     :hasRoleID "ARG3" .
 
-:edge_h_s2 a :AMR_Edge ;
+:edge_g_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_a3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_p2_name_Mercury a :AMR_Edge ;
+:edge_o2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o3_name_Pluto a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p3_name_Venus a :AMR_Edge ;
+:edge_o4_name_Makemake a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p4_name_Earth a :AMR_Edge ;
+:edge_o5_name_Gonggong a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p5_name_Mars a :AMR_Edge ;
+:edge_o6_name_Quaoar a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p9_ARG0_s a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
-
-:edge_p9_ARG1_a a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_o7_name_Sedna a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p_a a :AMR_Edge ;
-    :hasAmrRole :role_domain ;
-    :hasRoleID "domain" .
+:edge_o8_name_Orcus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p_t a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
 
-:edge_s_ii a :AMR_Edge ;
+:edge_p2_d a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
@@ -225,32 +269,32 @@ ns1:root a owl:AnnotationProperty .
 :label a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_compose-01_c a :AMR_Leaf ;
-    :edge_c_a :leaf_and_a ;
-    :edge_c_a2 :leaf_and_a2 ;
-    :edge_c_p6 :leaf_primary_p6 ;
-    :hasConcept :concept_compose-01 ;
-    :hasVariable :variable_c .
-
-:leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_s :leaf_system_s ;
-    :edge_p9_ARG1_a :leaf_and_a ;
-    :hasConcept :concept_part ;
-    :hasVariable :variable_p9 ;
-    :isReifiedLeaf true .
-
-:leaf_have-degree-91_h a :AMR_Leaf ;
-    :edge_h_a :leaf_and_a ;
-    :edge_h_m2 :leaf_more_m2 ;
-    :edge_h_s2 :leaf_small_s2 ;
-    :hasConcept :concept_have-degree-91 ;
-    :hasVariable :variable_h .
+:leaf_general-02_g a :AMR_Leaf ;
+    :edge_g_a :leaf_accept-01_a ;
+    :hasConcept :concept_general-02 ;
+    :hasVariable :variable_g .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_a3 :leaf_and_a3 ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_observe-01_o a :AMR_Leaf ;
+    :edge_o_p :leaf_person_p ;
+    :hasConcept :concept_observe-01 ;
+    :hasVariable :variable_o .
 
 :phenomena_conjunction_or a owl:Class ;
     rdfs:subClassOf :phenomena_conjunction ;
     :hasConceptLink "or" ;
     :label "conjunction-OR" .
 
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
 :phenomena_modality_obligation a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "obligate-01" ;
@@ -335,6 +379,14 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG9" .
 
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
 :role_have-degree-91 a owl:Class ;
     rdfs:subClassOf :AMR_Specific_Role ;
     :getPropertyType <net:specificProperty> .
@@ -348,26 +400,6 @@ ns1:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
-:role_op5 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op5" .
-
-:role_op6 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op6" .
-
-:role_op7 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op7" .
-
-:role_op8 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op8" .
-
-:role_op9 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op9" .
-
 :role_part a owl:Class ;
     rdfs:subClassOf :AMR_NonCore_Role ;
     :getDirectPropertyName "hasPart"^^xsd:string ;
@@ -381,15 +413,11 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:role_quant a owl:Class ;
-    rdfs:subClassOf :AMR_Specific_Role ;
-    :label "quant" .
-
-:root_WikiAbstract-SolarSystem-06 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> ;
-    :hasRootLeaf :leaf_planet_p ;
-    :hasSentenceID "WikiAbstract-SolarSystem-06" ;
-    :hasSentenceStatement "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." .
+:root_WikiAbstract-SolarSystem-15 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> ;
+    :hasRootLeaf :leaf_accept-01_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-15" ;
+    :hasSentenceStatement "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -641,28 +669,24 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> a ns3:compose-01 ;
-    ns3:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
-    ns3:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> a ns3:general-02 ;
+    ns3:general-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> a ns3:have-degree-91 ;
-    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
-    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
-    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> a ns1:AMR ;
-    ns1:has-id "WikiAbstract-SolarSystem-06" ;
-    ns1:has-sentence "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." ;
-    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> .
-
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> a ns2:system ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
-    ns2:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> a ns3:observe-01 ;
+    ns3:observe-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-15" ;
+    ns1:has-sentence "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> .
+
 <http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
 <http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
@@ -670,122 +694,124 @@ net:verbClass a owl:AnnotationProperty ;
 ns1:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:NamedEntity a ns1:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-EntityType",
-        "AMR-Term" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
-:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:compose-01 ;
-    :label "compose-01" .
-
-:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns3:have-degree-91 ;
-    :hasPhenomenaLink :phenomena_degree ;
-    :label "have-degree-91" .
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
-:concept_inner rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:inner ;
-    :label "inner" .
+:concept_accept-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:accept-01 ;
+    :label "accept-01" .
 
-:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:metal ;
-    :label "metal" .
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
 
-:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns1:more ;
-    :label "more" .
+:concept_at-least rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:at-least ;
+    :label "at-least" .
 
-:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns2:part ;
-    :isReifiedConcept true ;
-    :label "hasPart" .
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
 
-:concept_primary rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:primary ;
-    :label "primary" .
+:concept_general-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:general-02 ;
+    :label "general-02" .
 
-:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:rock ;
-    :label "rock" .
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
 
-:concept_small rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:small ;
-    :label "small" .
+:concept_observe-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:observe-01 ;
+    :label "observe-01" .
 
-:concept_system rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:system ;
-    :label "system" .
+:concept_person rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#person> ;
+    :label "person" .
 
-:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:terrestrial ;
-    :label "terrestrial" .
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
 
-:leaf_and_a2 a :AMR_Leaf ;
-    :edge_a2_m :leaf_metal_m ;
-    :edge_a2_r :leaf_rock_r ;
+:concept_trans-Neptunian rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:trans-Neptunian ;
+    :label "trans-Neptunian" .
+
+:leaf_and_a3 a :AMR_Leaf ;
+    :edge_a3_a4 :leaf_asteroid_a4 ;
+    :edge_a3_a5 :leaf_asteroid_a5 ;
+    :edge_a3_a6 :leaf_asteroid_a6 ;
+    :edge_a3_o3 :leaf_object_o3 ;
+    :edge_a3_o4 :leaf_object_o4 ;
+    :edge_a3_o5 :leaf_object_o5 ;
+    :edge_a3_o6 :leaf_object_o6 ;
+    :edge_a3_o7 :leaf_object_o7 ;
+    :edge_a3_o8 :leaf_object_o8 ;
+    :edge_a3_t :leaf_trans-Neptunian_t ;
     :hasConcept :concept_and ;
-    :hasVariable :variable_a2 .
+    :hasVariable :variable_a3 .
 
-:leaf_inner_ii a :AMR_Leaf ;
-    :hasConcept :concept_inner ;
-    :hasVariable :variable_ii .
+:leaf_asteroid_a4 a :AMR_Leaf ;
+    :edge_a4_name_Cerre :value_Cerre ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a4 .
 
-:leaf_metal_m a :AMR_Leaf ;
-    :hasConcept :concept_metal ;
-    :hasVariable :variable_m .
+:leaf_asteroid_a5 a :AMR_Leaf ;
+    :edge_a5_name_Eris :value_Eris ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a5 .
 
-:leaf_more_m2 a :AMR_Leaf ;
-    :hasConcept :concept_more ;
-    :hasVariable :variable_m2 .
+:leaf_asteroid_a6 a :AMR_Leaf ;
+    :edge_a6_name_Haumea :value_Haumea ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a6 .
 
-:leaf_planet_p a :AMR_Leaf ;
-    :edge_p_a :leaf_and_a ;
-    :edge_p_t :leaf_terrestrial_t ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p .
+:leaf_at-least_a2 a :AMR_Leaf ;
+    :hasConcept :concept_at-least ;
+    :hasVariable :variable_a2 .
 
-:leaf_planet_p2 a :AMR_Leaf ;
-    :edge_p2_name_Mercury :value_Mercury ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p2 .
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
 
-:leaf_planet_p3 a :AMR_Leaf ;
-    :edge_p3_name_Venus :value_Venus ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p3 .
+:leaf_object_o3 a :AMR_Leaf ;
+    :edge_o3_name_Pluto :value_Pluto ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
 
-:leaf_planet_p4 a :AMR_Leaf ;
-    :edge_p4_name_Earth :value_Earth ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p4 .
+:leaf_object_o4 a :AMR_Leaf ;
+    :edge_o4_name_Makemake :value_Makemake ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o4 .
 
-:leaf_planet_p5 a :AMR_Leaf ;
-    :edge_p5_name_Mars :value_Mars ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p5 .
+:leaf_object_o5 a :AMR_Leaf ;
+    :edge_o5_name_Gonggong :value_Gonggong ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o5 .
 
-:leaf_primary_p6 a :AMR_Leaf ;
-    :hasConcept :concept_primary ;
-    :hasVariable :variable_p6 .
+:leaf_object_o6 a :AMR_Leaf ;
+    :edge_o6_name_Quaoar :value_Quaoar ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o6 .
 
-:leaf_rock_r a :AMR_Leaf ;
-    :hasConcept :concept_rock ;
-    :hasVariable :variable_r .
+:leaf_object_o7 a :AMR_Leaf ;
+    :edge_o7_name_Sedna :value_Sedna ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o7 .
 
-:leaf_small_s2 a :AMR_Leaf ;
-    :hasConcept :concept_small ;
-    :hasVariable :variable_s2 .
+:leaf_object_o8 a :AMR_Leaf ;
+    :edge_o8_name_Orcus :value_Orcus ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o8 .
 
-:leaf_system_s a :AMR_Leaf ;
-    :edge_s_ii :leaf_inner_ii ;
-    :hasConcept :concept_system ;
-    :hasVariable :variable_s .
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
 
-:leaf_terrestrial_t a :AMR_Leaf ;
-    :hasConcept :concept_terrestrial ;
+:leaf_trans-Neptunian_t a :AMR_Leaf ;
+    :hasConcept :concept_trans-Neptunian ;
     :hasVariable :variable_t .
 
 :phenomena_conjunction_and a owl:Class ;
@@ -793,26 +819,21 @@ ns1:NamedEntity a ns1:Concept,
     :hasConceptLink "and" ;
     :label "conjunction-AND" .
 
-:phenomena_degree a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena ;
-    :hasConceptLink "have-degree-91" ;
-    :label "degree" .
-
-:role_ARG0 a owl:Class ;
+:role_ARG2 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG0" .
+    :label "ARG2" .
 
 :role_ARG3 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG3" .
 
-:role_domain a owl:Class ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :hasRelationName "domain" ;
-    :label "domain" ;
-    :toReifyAsConcept "domain" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
 
 :role_op3 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
@@ -822,93 +843,144 @@ ns1:NamedEntity a ns1:Concept,
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op4" .
 
-:value_Earth a :AMR_Value ;
-    rdfs:label "Earth" .
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
 
-:value_Mars a :AMR_Value ;
-    rdfs:label "Mars" .
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
 
-:value_Mercury a :AMR_Value ;
-    rdfs:label "Mercury" .
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
 
-:value_Venus a :AMR_Value ;
-    rdfs:label "Venus" .
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_Cerre a :AMR_Value ;
+    rdfs:label "Cerre" .
+
+:value_Eris a :AMR_Value ;
+    rdfs:label "Eris" .
+
+:value_Gonggong a :AMR_Value ;
+    rdfs:label "Gonggong" .
+
+:value_Haumea a :AMR_Value ;
+    rdfs:label "Haumea" .
+
+:value_Makemake a :AMR_Value ;
+    rdfs:label "Makemake" .
+
+:value_Orcus a :AMR_Value ;
+    rdfs:label "Orcus" .
+
+:value_Pluto a :AMR_Value ;
+    rdfs:label "Pluto" .
+
+:value_Quaoar a :AMR_Value ;
+    rdfs:label "Quaoar" .
+
+:value_Sedna a :AMR_Value ;
+    rdfs:label "Sedna" .
 
 :variable_a a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
     :label "a" .
 
 :variable_a2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
     :label "a2" .
 
-:variable_c a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> ;
-    :label "c" .
+:variable_a3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    :label "a3" .
+
+:variable_a4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    :label "a4" ;
+    :name "Cerre" .
+
+:variable_a5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    :label "a5" ;
+    :name "Eris" .
+
+:variable_a6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    :label "a6" ;
+    :name "Haumea" .
 
-:variable_h a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> ;
-    :label "h" .
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
+    :label "d" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> ;
+    :label "g" .
 
 :variable_ii a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> ;
     :label "ii" .
 
-:variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
-    :label "m" .
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    :label "o3" ;
+    :name "Pluto" .
+
+:variable_o4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    :label "o4" ;
+    :name "Makemake" .
 
-:variable_m2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
-    :label "m2" .
+:variable_o5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    :label "o5" ;
+    :name "Gonggong" .
+
+:variable_o6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    :label "o6" ;
+    :name "Quaoar" .
+
+:variable_o7 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    :label "o7" ;
+    :name "Sedna" .
+
+:variable_o8 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
+    :label "o8" ;
+    :name "Orcus" .
 
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
     :label "p" .
 
 :variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
-    :label "p2" ;
-    :name "Mercury" .
-
-:variable_p3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
-    :label "p3" ;
-    :name "Venus" .
-
-:variable_p4 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
-    :label "p4" ;
-    :name "Earth" .
-
-:variable_p5 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
-    :label "p5" ;
-    :name "Mars" .
-
-:variable_p6 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
-    :label "p6" .
-
-:variable_p9 a ns2:part,
-        :AMR_Variable ;
-    :isReifiedVariable true ;
-    :label "p9" .
-
-:variable_r a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
-    :label "r" .
-
-:variable_s a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> ;
-    :label "s" .
-
-:variable_s2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
-    :label "s2" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    :label "p2" .
 
 :variable_t a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
     :label "t" .
 
 sys:Degree a owl:Class ;
@@ -935,103 +1007,125 @@ net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> a ns1:and ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> a ns2:at-least ;
+    ns2:op1 "9" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> a ns2:inner ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> a ns1:and ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    ns2:op5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    ns2:op6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    ns2:op7 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    ns2:op8 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    ns2:op9 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> a ns2:metal ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> a ns2:asteroid ;
+    rdfs:label "Cerre" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> a ns1:more ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> a ns2:asteroid ;
+    rdfs:label "Eris" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> a <http://amr.isi.edu/entity-types#planet> ;
-    ns2:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> a ns2:asteroid ;
+    rdfs:label "Haumea" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Mercury" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> a ns2:dwarf ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Venus" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> a ns2:object ;
+    rdfs:label "Pluto" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Earth" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> a ns2:object ;
+    rdfs:label "Makemake" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Mars" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> a ns2:object ;
+    rdfs:label "Gonggong" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> a ns2:primary ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> a ns2:object ;
+    rdfs:label "Quaoar" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> a ns2:rock ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> a ns2:object ;
+    rdfs:label "Sedna" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> a ns2:small ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> a ns2:object ;
+    rdfs:label "Orcus" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> a ns2:terrestrial ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:compose-01 a ns1:Frame ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> a ns2:trans-Neptunian ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:have-degree-91 a ns1:Frame ;
+<http://amr.isi.edu/entity-types#person> a ns1:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:inner a ns1:Concept ;
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:metal a ns1:Concept ;
+ns3:accept-01 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:part a ns1:Role ;
+ns3:general-02 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:primary a ns1:Concept ;
+ns3:include-91 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:rock a ns1:Concept ;
+ns3:observe-01 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:small a ns1:Concept ;
+ns2:at-least a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:system a ns1:Concept ;
+ns2:dwarf a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:terrestrial a ns1:Concept ;
+ns2:trans-Neptunian a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:Frame a ns1:Concept,
+ns1:NamedEntity a ns1:Concept,
         owl:Class,
         owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:more a ns1:Concept ;
+ns1:and a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
-:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns1:and ;
-    :hasPhenomenaLink :phenomena_conjunction_and ;
-    :label "and" .
-
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
+:leaf_accept-01_a a :AMR_Leaf ;
+    :edge_a_o2 :leaf_object_o2 ;
+    :edge_a_p :leaf_person_p ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_accept-01 ;
+    :hasVariable :variable_a .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :edge_o2_a2 :leaf_at-least_a2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+:leaf_person_p a :AMR_Leaf ;
+    :hasConcept :concept_person ;
+    :hasVariable :variable_p .
+
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
     :hasConceptLink "contrast-01",
@@ -1039,17 +1133,19 @@ ns1:more a ns1:Concept ;
         "neither" ;
     :label "conjunction" .
 
-:role_ARG2 a owl:Class ;
+:role_ARG0 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG2" .
-
-:role_op1 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+    :label "ARG0" .
 
-:role_op2 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op2" .
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
 
 sys:Out_ObjectProperty a owl:ObjectProperty .
 
@@ -1062,7 +1158,17 @@ net:Property_Net a owl:Class ;
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-ns1:and a ns1:Concept ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> a ns3:accept-01 ;
+    ns3:accept-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    ns3:accept-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    ns3:accept-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> a <http://amr.isi.edu/entity-types#person> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1071,12 +1177,13 @@ ns1:and a ns1:Concept ;
 :AMR_Phenomena a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:AMR_Predicat_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Specific_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:asteroid ;
+    :label "asteroid" .
+
 :fromAmrLk a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
@@ -1094,16 +1201,6 @@ ns1:and a ns1:Concept ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG1" .
 
-:role_mod a owl:Class ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :getDirectPropertyName "hasFeature"^^xsd:string ;
-    :getPropertyType rdfs:subClassOf,
-        owl:ObjectProperty ;
-    :label "mod" ;
-    :toReifyAsConcept "mod" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
-
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
@@ -1115,59 +1212,36 @@ net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
+ns2:asteroid a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:leaf_and_a a :AMR_Leaf ;
-    :edge_a_p2 :leaf_planet_p2 ;
-    :edge_a_p3 :leaf_planet_p3 ;
-    :edge_a_p4 :leaf_planet_p4 ;
-    :edge_a_p5 :leaf_planet_p5 ;
-    :hasConcept :concept_and ;
-    :hasVariable :variable_a .
-
-:role_name a owl:Class ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
 net:typeProperty a owl:AnnotationProperty ;
     rdfs:label "type property" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> a ns1:and ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
-    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
-    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
-ns3:FrameRole a ns1:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_NonCore_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-:AMR_Value a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
-    :label "planet" .
-
 sys:Out_Structure a owl:Class ;
     rdfs:label "Output Ontology Structure" .
 
 net:netProperty a owl:AnnotationProperty ;
     rdfs:label "netProperty" .
 
-<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_ObjectProperty a owl:ObjectProperty ;
     rdfs:subPropertyOf owl:topObjectProperty .
 
@@ -1176,6 +1250,12 @@ net:netProperty a owl:AnnotationProperty ;
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 rdf:Property a owl:Class .
 
 :AMR_Relation a owl:Class ;
@@ -1184,6 +1264,13 @@ rdf:Property a owl:Class .
 :AMR_Term_Concept a owl:Class ;
     rdfs:subClassOf :AMR_Concept .
 
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
@@ -1191,6 +1278,10 @@ net:has_object a owl:AnnotationProperty ;
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
@@ -1199,6 +1290,9 @@ net:Net a owl:Class ;
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
     rdfs:subPropertyOf net:objectProperty .
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
index f02b6ddb68b1b9188de5ad60311083b44c987abe..9f889bdc9557c95cc1e49f1e2f1387ae8b209006 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -28,15 +28,19 @@ ns1:Role a rdfs:Class,
     ns1:hasSentence "Earth is a planet." ;
     ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns3:compose-01.ARG1 a ns3:FrameRole .
+ns3:accept-01.ARG0 a ns3:FrameRole .
 
-ns3:compose-01.ARG2 a ns3:FrameRole .
+ns3:accept-01.ARG1 a ns3:FrameRole .
 
-ns3:have-degree-91.ARG1 a ns3:FrameRole .
+ns3:accept-01.ARG3 a ns3:FrameRole .
 
-ns3:have-degree-91.ARG2 a ns3:FrameRole .
+ns3:general-02.ARG1 a ns3:FrameRole .
 
-ns3:have-degree-91.ARG3 a ns3:FrameRole .
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:observe-01.ARG0 a ns3:FrameRole .
 
 ns2:domain a ns1:Role,
         owl:AnnotationProperty,
@@ -52,6 +56,18 @@ ns2:op3 a ns1:Role .
 
 ns2:op4 a ns1:Role .
 
+ns2:op5 a ns1:Role .
+
+ns2:op6 a ns1:Role .
+
+ns2:op7 a ns1:Role .
+
+ns2:op8 a ns1:Role .
+
+ns2:op9 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
 ns1:hasID a owl:AnnotationProperty .
 
 ns1:hasSentence a owl:AnnotationProperty .
@@ -69,87 +85,115 @@ ns1:root a owl:AnnotationProperty .
 :AMR_Root a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:edge_a2_m a :AMR_Edge ;
-    :hasAmrRole :role_op2 ;
-    :hasRoleID "op2" .
-
-:edge_a2_r a :AMR_Edge ;
-    :hasAmrRole :role_op1 ;
-    :hasRoleID "op1" .
-
-:edge_a_p2 a :AMR_Edge ;
+:edge_a3_a4 a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_a_p3 a :AMR_Edge ;
-    :hasAmrRole :role_op2 ;
-    :hasRoleID "op2" .
-
-:edge_a_p4 a :AMR_Edge ;
+:edge_a3_a5 a :AMR_Edge ;
     :hasAmrRole :role_op3 ;
     :hasRoleID "op3" .
 
-:edge_a_p5 a :AMR_Edge ;
+:edge_a3_a6 a :AMR_Edge ;
     :hasAmrRole :role_op4 ;
     :hasRoleID "op4" .
 
-:edge_c_a a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_a3_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
 
-:edge_c_a2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
+:edge_a3_o4 a :AMR_Edge ;
+    :hasAmrRole :role_op5 ;
+    :hasRoleID "op5" .
 
-:edge_c_p6 a :AMR_Edge ;
+:edge_a3_o5 a :AMR_Edge ;
+    :hasAmrRole :role_op6 ;
+    :hasRoleID "op6" .
+
+:edge_a3_o6 a :AMR_Edge ;
+    :hasAmrRole :role_op7 ;
+    :hasRoleID "op7" .
+
+:edge_a3_o7 a :AMR_Edge ;
+    :hasAmrRole :role_op8 ;
+    :hasRoleID "op8" .
+
+:edge_a3_o8 a :AMR_Edge ;
+    :hasAmrRole :role_op9 ;
+    :hasRoleID "op9" .
+
+:edge_a3_t a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
-:edge_h_a a :AMR_Edge ;
+:edge_a4_name_Cerre a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a5_name_Eris a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a6_name_Haumea a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a_o2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_h_m2 a :AMR_Edge ;
+:edge_a_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_a_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG3 ;
     :hasRoleID "ARG3" .
 
-:edge_h_s2 a :AMR_Edge ;
+:edge_g_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_a3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_p2_name_Mercury a :AMR_Edge ;
+:edge_o2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o3_name_Pluto a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p3_name_Venus a :AMR_Edge ;
+:edge_o4_name_Makemake a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p4_name_Earth a :AMR_Edge ;
+:edge_o5_name_Gonggong a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p5_name_Mars a :AMR_Edge ;
+:edge_o6_name_Quaoar a :AMR_Edge ;
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_p9_ARG0_s a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
-
-:edge_p9_ARG1_a a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_o7_name_Sedna a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p_a a :AMR_Edge ;
-    :hasAmrRole :role_domain ;
-    :hasRoleID "domain" .
+:edge_o8_name_Orcus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p_t a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
 
-:edge_s_ii a :AMR_Edge ;
+:edge_p2_d a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
@@ -230,6 +274,11 @@ ns1:root a owl:AnnotationProperty .
     :hasConceptLink "or" ;
     :label "conjunction-OR" .
 
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
 :phenomena_modality_obligation a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "obligate-01" ;
@@ -314,6 +363,14 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG9" .
 
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
 :role_have-degree-91 a owl:Class ;
     rdfs:subClassOf :AMR_Specific_Role ;
     :getPropertyType <net:specificProperty> .
@@ -327,26 +384,6 @@ ns1:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
-:role_op5 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op5" .
-
-:role_op6 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op6" .
-
-:role_op7 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op7" .
-
-:role_op8 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op8" .
-
-:role_op9 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op9" .
-
 :role_part a owl:Class ;
     rdfs:subClassOf :AMR_NonCore_Role ;
     :getDirectPropertyName "hasPart"^^xsd:string ;
@@ -360,15 +397,11 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:role_quant a owl:Class ;
-    rdfs:subClassOf :AMR_Specific_Role ;
-    :label "quant" .
-
-:root_WikiAbstract-SolarSystem-06 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> ;
-    :hasRootLeaf :leaf_planet_p ;
-    :hasSentenceID "WikiAbstract-SolarSystem-06" ;
-    :hasSentenceStatement "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." .
+:root_WikiAbstract-SolarSystem-15 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> ;
+    :hasRootLeaf :leaf_accept-01_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-15" ;
+    :hasSentenceStatement "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -461,67 +494,64 @@ net:atomOf a owl:AnnotationProperty ;
     rdfs:label "atom of" ;
     rdfs:subPropertyOf net:typeProperty .
 
-net:atomProperty_compose_c a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_planet_p2,
-        net:atomClass_planet_p3,
-        net:atomClass_planet_p4,
-        net:atomClass_planet_p5,
-        net:phenomena_conjunction-AND_a ;
-    :role_ARG2 net:atomClass_metal_m,
-        net:atomClass_rock_r,
-        net:phenomena_conjunction-AND_a2 ;
-    :role_mod net:atomClass_primary_p6 ;
-    net:coverBaseNode :leaf_compose-01_c ;
-    net:coverNode :leaf_compose-01_c ;
-    net:hasNaming "compose" ;
-    net:hasPropertyName "compose" ;
-    net:hasPropertyName01 "composeing" ;
-    net:hasPropertyName10 "compose-by" ;
-    net:hasPropertyName12 "compose-of" ;
+net:atomProperty_general_g a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_accept_a,
+        net:atomProperty_accept_a ;
+    net:coverBaseNode :leaf_general-02_g ;
+    net:coverNode :leaf_general-02_g ;
+    net:hasNaming "general" ;
+    net:hasPropertyName "general" ;
+    net:hasPropertyName01 "generaling" ;
+    net:hasPropertyName10 "general-by" ;
+    net:hasPropertyName12 "general-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_and_a,
-        :leaf_and_a2,
-        :leaf_primary_p6 .
-
-net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_system_s,
-        net:compositeClass_inner-system_s ;
-    :role_ARG1 net:atomClass_planet_p2,
-        net:atomClass_planet_p3,
-        net:atomClass_planet_p4,
-        net:atomClass_planet_p5,
-        net:phenomena_conjunction-AND_a ;
-    net:coverBaseNode :leaf_hasPart_p9 ;
-    net:coverNode :leaf_hasPart_p9 ;
-    net:hasNaming "hasPart" ;
-    net:hasPropertyName "hasPart" ;
-    net:hasPropertyName01 "hasParting" ;
-    net:hasPropertyName10 "hasPart-by" ;
-    net:hasPropertyName12 "hasPart-of" ;
+    net:targetArgumentNode :leaf_accept-01_a .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_asteroid_a4,
+        net:atomClass_asteroid_a5,
+        net:atomClass_asteroid_a6,
+        net:atomClass_object_o3,
+        net:atomClass_object_o4,
+        net:atomClass_object_o5,
+        net:atomClass_object_o6,
+        net:atomClass_object_o7,
+        net:atomClass_object_o8,
+        net:phenomena_conjunction-AND_a3 ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_and_a,
-        :leaf_system_s .
+    net:targetArgumentNode :leaf_and_a3,
+        :leaf_object_o2 .
+
+net:atomProperty_observe_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_person_p ;
+    net:coverBaseNode :leaf_observe-01_o ;
+    net:coverNode :leaf_observe-01_o ;
+    net:hasNaming "observe" ;
+    net:hasPropertyName "observe" ;
+    net:hasPropertyName01 "observeing" ;
+    net:hasPropertyName10 "observe-by" ;
+    net:hasPropertyName12 "observe-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_person_p .
 
 net:atomType a owl:AnnotationProperty ;
     rdfs:label "atom type" ;
     rdfs:subPropertyOf net:objectType .
 
-net:compositeClass_terrestrial-planet_p a net:Composite_Class_Net ;
-    :role_domain net:phenomena_conjunction-AND_a ;
-    :role_mod net:atomClass_terrestrial_t ;
-    net:composeFrom net:atomClass_planet_p,
-        net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p,
-        :leaf_terrestrial_t ;
-    net:hasMotherClassNet net:atomClass_planet_p ;
-    net:hasNaming "terrestrial-planet" ;
-    net:hasStructure "unknown" .
-
 net:entityClass a owl:AnnotationProperty ;
     rdfs:label "entity class" ;
     rdfs:subPropertyOf net:objectValue .
@@ -617,24 +647,14 @@ net:has_target a owl:AnnotationProperty ;
     rdfs:label "has target" ;
     rdfs:subPropertyOf net:has_relation_value .
 
-net:individual_inner_ii a net:Individual_Net ;
-    net:composeFrom net:atomClass_inner_ii ;
-    net:coverBaseNode :leaf_inner_ii ;
-    net:coverNode :leaf_inner_ii ;
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
     net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "inner" ;
-    net:hasMotherClassNet net:atomClass_inner_ii ;
-    net:hasNaming "inner" ;
-    net:hasStructure "unknown" .
-
-net:individual_terrestrial_t a net:Individual_Net ;
-    net:composeFrom net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_terrestrial_t ;
-    net:coverNode :leaf_terrestrial_t ;
-    net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "terrestrial" ;
-    net:hasMotherClassNet net:atomClass_terrestrial_t ;
-    net:hasNaming "terrestrial" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
     net:hasStructure "unknown" .
 
 net:inverse_direction a owl:NamedIndividual .
@@ -661,21 +681,6 @@ net:modCat2 a owl:AnnotationProperty ;
 
 net:normal_direction a owl:NamedIndividual .
 
-net:phenomena_degree_h a net:Phenomena_Net ;
-    :role_ARG1 net:atomClass_planet_p2,
-        net:atomClass_planet_p3,
-        net:atomClass_planet_p4,
-        net:atomClass_planet_p5,
-        net:phenomena_conjunction-AND_a ;
-    :role_ARG2 net:atomClass_small_s2 ;
-    :role_ARG3 net:atomProperty_more_m2 ;
-    net:coverBaseNode :leaf_have-degree-91_h ;
-    net:coverNode :leaf_have-degree-91_h ;
-    net:hasNaming "degree" ;
-    net:hasPhenomenaRef "have-degree-91" ;
-    net:hasPhenomenaType :phenomena_degree ;
-    net:hasStructure "unknown" .
-
 net:relationOf a owl:AnnotationProperty ;
     rdfs:label "relation of" ;
     rdfs:subPropertyOf net:typeProperty .
@@ -688,28 +693,24 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> a ns3:compose-01 ;
-    ns3:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
-    ns3:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> a ns3:general-02 ;
+    ns3:general-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> a ns3:have-degree-91 ;
-    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
-    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
-    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> a ns1:AMR ;
-    ns1:has-id "WikiAbstract-SolarSystem-06" ;
-    ns1:has-sentence "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." ;
-    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> .
-
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> a ns2:system ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
-    ns2:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> a ns3:observe-01 ;
+    ns3:observe-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-15" ;
+    ns1:has-sentence "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> .
+
 <http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
 <http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
@@ -717,77 +718,69 @@ net:verbClass a owl:AnnotationProperty ;
 ns1:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:NamedEntity a ns1:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-EntityType",
-        "AMR-Term" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
-:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:compose-01 ;
-    :label "compose-01" .
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
-:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns3:have-degree-91 ;
-    :hasPhenomenaLink :phenomena_degree ;
-    :label "have-degree-91" .
+:concept_accept-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:accept-01 ;
+    :label "accept-01" .
 
-:concept_inner rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:inner ;
-    :label "inner" .
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
 
-:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:metal ;
-    :label "metal" .
+:concept_at-least rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:at-least ;
+    :label "at-least" .
 
-:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns1:more ;
-    :label "more" .
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
 
-:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns2:part ;
-    :isReifiedConcept true ;
-    :label "hasPart" .
+:concept_general-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:general-02 ;
+    :label "general-02" .
 
-:concept_primary rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:primary ;
-    :label "primary" .
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
 
-:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:rock ;
-    :label "rock" .
+:concept_observe-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:observe-01 ;
+    :label "observe-01" .
 
-:concept_small rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:small ;
-    :label "small" .
+:concept_person rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#person> ;
+    :label "person" .
 
-:concept_system rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:system ;
-    :label "system" .
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
 
-:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:terrestrial ;
-    :label "terrestrial" .
+:concept_trans-Neptunian rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:trans-Neptunian ;
+    :label "trans-Neptunian" .
 
-:role_ARG0 a owl:Class,
+:role_ARG2 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG0" .
+    :label "ARG2" .
 
 :role_ARG3 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG3" .
 
-:role_domain a owl:Class,
+:role_op1 a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :hasRelationName "domain" ;
-    :label "domain" ;
-    :toReifyAsConcept "domain" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
 
 :role_op3 a owl:Class,
         net:Relation ;
@@ -799,81 +792,123 @@ ns1:NamedEntity a ns1:Concept,
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op4" .
 
+:role_op5 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
 :variable_a a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
     :label "a" .
 
 :variable_a2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
     :label "a2" .
 
-:variable_c a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> ;
-    :label "c" .
+:variable_a3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    :label "a3" .
 
-:variable_h a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> ;
-    :label "h" .
+:variable_a4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    :label "a4" ;
+    :name "Cerre" .
+
+:variable_a5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    :label "a5" ;
+    :name "Eris" .
+
+:variable_a6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    :label "a6" ;
+    :name "Haumea" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
+    :label "d" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> ;
+    :label "g" .
 
 :variable_ii a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> ;
     :label "ii" .
 
-:variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
-    :label "m" .
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    :label "o3" ;
+    :name "Pluto" .
+
+:variable_o4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    :label "o4" ;
+    :name "Makemake" .
 
-:variable_m2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
-    :label "m2" .
+:variable_o5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    :label "o5" ;
+    :name "Gonggong" .
+
+:variable_o6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    :label "o6" ;
+    :name "Quaoar" .
+
+:variable_o7 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    :label "o7" ;
+    :name "Sedna" .
+
+:variable_o8 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
+    :label "o8" ;
+    :name "Orcus" .
 
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
     :label "p" .
 
 :variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
-    :label "p2" ;
-    :name "Mercury" .
-
-:variable_p3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
-    :label "p3" ;
-    :name "Venus" .
-
-:variable_p4 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
-    :label "p4" ;
-    :name "Earth" .
-
-:variable_p5 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
-    :label "p5" ;
-    :name "Mars" .
-
-:variable_p6 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
-    :label "p6" .
-
-:variable_p9 a ns2:part,
-        :AMR_Variable ;
-    :isReifiedVariable true ;
-    :label "p9" .
-
-:variable_r a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
-    :label "r" .
-
-:variable_s a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> ;
-    :label "s" .
-
-:variable_s2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
-    :label "s2" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    :label "p2" .
 
 :variable_t a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
     :label "t" .
 
 sys:Degree a owl:Class ;
@@ -887,220 +922,276 @@ sys:Out_AnnotationProperty a owl:AnnotationProperty .
 net:Axiom_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
 net:Feature a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
-net:atomClass_primary_p6 a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_primary_p6 ;
-    net:coverNode :leaf_primary_p6 ;
-    net:hasClassName "primary" ;
-    net:hasNaming "primary" ;
-    net:hasStructure "unknown" .
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:atomClass_small_s2 a net:Atom_Class_Net,
+net:atomClass_accept_a a net:Atom_Class_Net,
         net:Class_Net ;
-    net:coverBaseNode :leaf_small_s2 ;
-    net:coverNode :leaf_small_s2 ;
-    net:hasClassName "small" ;
+    :role_ARG0 net:atomClass_person_p ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG3 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:composeFrom net:atomProperty_accept_a ;
+    net:coverBaseNode :leaf_accept-01_a ;
+    net:coverNode :leaf_accept-01_a ;
+    net:hasClassName "accept" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "small" ;
+    net:hasNaming "accept" ;
     net:hasStructure "unknown" .
 
-net:atomProperty_more_m2 a net:Atom_Property_Net ;
-    net:coverBaseNode :leaf_more_m2 ;
-    net:coverNode :leaf_more_m2 ;
-    net:hasNaming "more" ;
-    net:hasPropertyName "more" ;
-    net:hasPropertyName01 "moreing" ;
-    net:hasPropertyName10 "more-by" ;
-    net:hasPropertyName12 "more-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" .
-
-net:compositeClass_inner-system_s a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_inner_ii ;
-    net:composeFrom net:atomClass_inner_ii,
-        net:atomClass_system_s ;
-    net:coverBaseNode :leaf_system_s ;
-    net:coverNode :leaf_inner_ii,
-        :leaf_system_s ;
-    net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_system_s ;
-    net:hasNaming "inner-system" ;
+net:atomClass_at-least_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_at-least_a2 ;
+    net:coverNode :leaf_at-least_a2 ;
+    net:hasClassName "at-least" ;
+    net:hasNaming "at-least" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_trans-Neptunian_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_trans-Neptunian_t ;
+    net:coverNode :leaf_trans-Neptunian_t ;
+    net:hasClassName "trans-Neptunian" ;
+    net:hasNaming "trans-Neptunian" ;
     net:hasStructure "unknown" .
 
 net:has_value a owl:AnnotationProperty ;
     rdfs:subPropertyOf net:netProperty .
 
-net:individual_Earth_p4 a net:Individual_Net ;
-    :role_name net:value_Earth_blankNode ;
-    net:coverBaseNode :leaf_planet_p4 ;
-    net:coverNode :leaf_planet_p4 ;
-    net:hasIndividualLabel "Earth" ;
-    net:hasMotherClassNet net:atomClass_planet_p4 ;
-    net:hasNaming "Earth" ;
+net:individual_Cerre_a4 a net:Individual_Net ;
+    :role_name net:value_Cerre_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a4 ;
+    net:coverNode :leaf_asteroid_a4 ;
+    net:hasIndividualLabel "Cerre" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a4 ;
+    net:hasNaming "Cerre" ;
     net:hasStructure "unknown" .
 
-net:individual_Mars_p5 a net:Individual_Net ;
-    :role_name net:value_Mars_blankNode ;
-    net:coverBaseNode :leaf_planet_p5 ;
-    net:coverNode :leaf_planet_p5 ;
-    net:hasIndividualLabel "Mars" ;
-    net:hasMotherClassNet net:atomClass_planet_p5 ;
-    net:hasNaming "Mars" ;
+net:individual_Eris_a5 a net:Individual_Net ;
+    :role_name net:value_Eris_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a5 ;
+    net:coverNode :leaf_asteroid_a5 ;
+    net:hasIndividualLabel "Eris" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a5 ;
+    net:hasNaming "Eris" ;
     net:hasStructure "unknown" .
 
-net:individual_Mercury_p2 a net:Individual_Net ;
-    :role_name net:value_Mercury_blankNode ;
-    net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_planet_p2 ;
-    net:hasIndividualLabel "Mercury" ;
-    net:hasMotherClassNet net:atomClass_planet_p2 ;
-    net:hasNaming "Mercury" ;
+net:individual_Gonggong_o5 a net:Individual_Net ;
+    :role_name net:value_Gonggong_blankNode ;
+    net:coverBaseNode :leaf_object_o5 ;
+    net:coverNode :leaf_object_o5 ;
+    net:hasIndividualLabel "Gonggong" ;
+    net:hasMotherClassNet net:atomClass_object_o5 ;
+    net:hasNaming "Gonggong" ;
+    net:hasStructure "unknown" .
+
+net:individual_Haumea_a6 a net:Individual_Net ;
+    :role_name net:value_Haumea_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a6 ;
+    net:coverNode :leaf_asteroid_a6 ;
+    net:hasIndividualLabel "Haumea" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a6 ;
+    net:hasNaming "Haumea" ;
+    net:hasStructure "unknown" .
+
+net:individual_Makemake_o4 a net:Individual_Net ;
+    :role_name net:value_Makemake_blankNode ;
+    net:coverBaseNode :leaf_object_o4 ;
+    net:coverNode :leaf_object_o4 ;
+    net:hasIndividualLabel "Makemake" ;
+    net:hasMotherClassNet net:atomClass_object_o4 ;
+    net:hasNaming "Makemake" ;
+    net:hasStructure "unknown" .
+
+net:individual_Orcus_o8 a net:Individual_Net ;
+    :role_name net:value_Orcus_blankNode ;
+    net:coverBaseNode :leaf_object_o8 ;
+    net:coverNode :leaf_object_o8 ;
+    net:hasIndividualLabel "Orcus" ;
+    net:hasMotherClassNet net:atomClass_object_o8 ;
+    net:hasNaming "Orcus" ;
     net:hasStructure "unknown" .
 
-net:individual_Venus_p3 a net:Individual_Net ;
-    :role_name net:value_Venus_blankNode ;
-    net:coverBaseNode :leaf_planet_p3 ;
-    net:coverNode :leaf_planet_p3 ;
-    net:hasIndividualLabel "Venus" ;
-    net:hasMotherClassNet net:atomClass_planet_p3 ;
-    net:hasNaming "Venus" ;
+net:individual_Pluto_o3 a net:Individual_Net ;
+    :role_name net:value_Pluto_blankNode ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasIndividualLabel "Pluto" ;
+    net:hasMotherClassNet net:atomClass_object_o3 ;
+    net:hasNaming "Pluto" ;
+    net:hasStructure "unknown" .
+
+net:individual_Quaoar_o6 a net:Individual_Net ;
+    :role_name net:value_Quaoar_blankNode ;
+    net:coverBaseNode :leaf_object_o6 ;
+    net:coverNode :leaf_object_o6 ;
+    net:hasIndividualLabel "Quaoar" ;
+    net:hasMotherClassNet net:atomClass_object_o6 ;
+    net:hasNaming "Quaoar" ;
+    net:hasStructure "unknown" .
+
+net:individual_Sedna_o7 a net:Individual_Net ;
+    :role_name net:value_Sedna_blankNode ;
+    net:coverBaseNode :leaf_object_o7 ;
+    net:coverNode :leaf_object_o7 ;
+    net:hasIndividualLabel "Sedna" ;
+    net:hasMotherClassNet net:atomClass_object_o7 ;
+    net:hasNaming "Sedna" ;
     net:hasStructure "unknown" .
 
 net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
-    :role_op1 net:atomClass_rock_r ;
-    :role_op2 net:atomClass_metal_m ;
-    net:coverBaseNode :leaf_and_a2 ;
-    net:coverNode :leaf_and_a2 ;
+net:phenomena_conjunction-AND_a3 a net:Phenomena_Net ;
+    :role_mod net:atomClass_trans-Neptunian_t ;
+    :role_op1 net:atomClass_asteroid_a4,
+        net:individual_Cerre_a4 ;
+    :role_op2 net:atomClass_object_o3,
+        net:individual_Pluto_o3 ;
+    :role_op3 net:atomClass_asteroid_a5,
+        net:individual_Eris_a5 ;
+    :role_op4 net:atomClass_asteroid_a6,
+        net:individual_Haumea_a6 ;
+    :role_op5 net:atomClass_object_o4,
+        net:individual_Makemake_o4 ;
+    :role_op6 net:atomClass_object_o5,
+        net:individual_Gonggong_o5 ;
+    :role_op7 net:atomClass_object_o6,
+        net:individual_Quaoar_o6 ;
+    :role_op8 net:atomClass_object_o7,
+        net:individual_Sedna_o7 ;
+    :role_op9 net:atomClass_object_o8,
+        net:individual_Orcus_o8 ;
+    net:coverBaseNode :leaf_and_a3 ;
+    net:coverNode :leaf_and_a3 ;
     net:hasNaming "conjunction-AND" ;
     net:hasPhenomenaRef "and" ;
     net:hasPhenomenaType :phenomena_conjunction_and ;
     net:hasStructure "unknown" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> a ns1:and ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> a ns2:at-least ;
+    ns2:op1 "9" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> a ns2:inner ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> a ns1:and ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    ns2:op5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    ns2:op6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    ns2:op7 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    ns2:op8 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    ns2:op9 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> a ns2:metal ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> a ns2:asteroid ;
+    rdfs:label "Cerre" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> a ns1:more ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> a ns2:asteroid ;
+    rdfs:label "Eris" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> a <http://amr.isi.edu/entity-types#planet> ;
-    ns2:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> a ns2:asteroid ;
+    rdfs:label "Haumea" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Mercury" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> a ns2:dwarf ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Venus" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> a ns2:object ;
+    rdfs:label "Pluto" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Earth" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> a ns2:object ;
+    rdfs:label "Makemake" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Mars" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> a ns2:object ;
+    rdfs:label "Gonggong" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> a ns2:primary ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> a ns2:object ;
+    rdfs:label "Quaoar" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> a ns2:rock ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> a ns2:object ;
+    rdfs:label "Sedna" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> a ns2:small ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> a ns2:object ;
+    rdfs:label "Orcus" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> a ns2:terrestrial ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:compose-01 a ns1:Frame ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> a ns2:trans-Neptunian ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:have-degree-91 a ns1:Frame ;
+<http://amr.isi.edu/entity-types#person> a ns1:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:inner a ns1:Concept ;
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:metal a ns1:Concept ;
+ns3:accept-01 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:part a ns1:Role ;
+ns3:general-02 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:primary a ns1:Concept ;
+ns3:include-91 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:rock a ns1:Concept ;
+ns3:observe-01 a ns1:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:small a ns1:Concept ;
+ns2:at-least a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:system a ns1:Concept ;
+ns2:dwarf a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:terrestrial a ns1:Concept ;
+ns2:trans-Neptunian a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:Frame a ns1:Concept,
+ns1:NamedEntity a ns1:Concept,
         owl:Class,
         owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:more a ns1:Concept ;
+ns1:and a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
-:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
-    :fromAmrLk ns1:and ;
-    :hasPhenomenaLink :phenomena_conjunction_and ;
-    :label "and" .
-
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_compose-01_c a :AMR_Leaf ;
-    :edge_c_a :leaf_and_a ;
-    :edge_c_a2 :leaf_and_a2 ;
-    :edge_c_p6 :leaf_primary_p6 ;
-    :hasConcept :concept_compose-01 ;
-    :hasVariable :variable_c .
-
-:leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_s :leaf_system_s ;
-    :edge_p9_ARG1_a :leaf_and_a ;
-    :hasConcept :concept_part ;
-    :hasVariable :variable_p9 ;
-    :isReifiedLeaf true .
-
-:leaf_have-degree-91_h a :AMR_Leaf ;
-    :edge_h_a :leaf_and_a ;
-    :edge_h_m2 :leaf_more_m2 ;
-    :edge_h_s2 :leaf_small_s2 ;
-    :hasConcept :concept_have-degree-91 ;
-    :hasVariable :variable_h .
+:leaf_general-02_g a :AMR_Leaf ;
+    :edge_g_a :leaf_accept-01_a ;
+    :hasConcept :concept_general-02 ;
+    :hasVariable :variable_g .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_a3 :leaf_and_a3 ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_observe-01_o a :AMR_Leaf ;
+    :edge_o_p :leaf_person_p ;
+    :hasConcept :concept_observe-01 ;
+    :hasVariable :variable_o .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1109,102 +1200,158 @@ ns1:more a ns1:Concept ;
         "neither" ;
     :label "conjunction" .
 
-:phenomena_degree a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena ;
-    :hasConceptLink "have-degree-91" ;
-    :label "degree" .
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
 
-:role_ARG2 a owl:Class,
+:role_ARG0 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG2" .
+    :label "ARG0" .
 
-:role_op1 a owl:Class,
+:role_mod a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
 
-:role_op2 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op2" .
+:value_Cerre a :AMR_Value ;
+    rdfs:label "Cerre" .
 
-:value_Earth a :AMR_Value ;
-    rdfs:label "Earth" .
+:value_Eris a :AMR_Value ;
+    rdfs:label "Eris" .
 
-:value_Mars a :AMR_Value ;
-    rdfs:label "Mars" .
+:value_Gonggong a :AMR_Value ;
+    rdfs:label "Gonggong" .
 
-:value_Mercury a :AMR_Value ;
-    rdfs:label "Mercury" .
+:value_Haumea a :AMR_Value ;
+    rdfs:label "Haumea" .
 
-:value_Venus a :AMR_Value ;
-    rdfs:label "Venus" .
+:value_Makemake a :AMR_Value ;
+    rdfs:label "Makemake" .
 
-sys:Out_ObjectProperty a owl:ObjectProperty .
+:value_Orcus a :AMR_Value ;
+    rdfs:label "Orcus" .
 
-net:Composite_Class_Net a owl:Class ;
-    rdfs:subClassOf net:Class_Net .
+:value_Pluto a :AMR_Value ;
+    rdfs:label "Pluto" .
+
+:value_Quaoar a :AMR_Value ;
+    rdfs:label "Quaoar" .
+
+:value_Sedna a :AMR_Value ;
+    rdfs:label "Sedna" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
 
 net:Property_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_metal_m a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_metal_m ;
-    net:coverNode :leaf_metal_m ;
-    net:hasClassName "metal" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "metal" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_planet_p a net:Atom_Class_Net,
+net:atomProperty_accept_a a net:Atom_Property_Net,
         net:Deprecated_Net ;
-    :role_domain net:phenomena_conjunction-AND_a ;
-    :role_mod net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p ;
-    net:hasClassName "planet" ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_rock_r a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_rock_r ;
-    net:coverNode :leaf_rock_r ;
-    net:hasClassName "rock" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "rock" ;
+    :role_ARG0 net:atomClass_person_p ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG3 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_accept-01_a ;
+    net:coverNode :leaf_accept-01_a ;
+    net:hasNaming "accept" ;
+    net:hasPropertyName "accept" ;
+    net:hasPropertyName01 "accepting" ;
+    net:hasPropertyName10 "accept-by" ;
+    net:hasPropertyName12 "accept-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_person_p,
+        :leaf_planet_p2 .
+
+net:compositeClass_dwarf-planet_p2 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p2 ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
     net:hasStructure "unknown" .
 
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-net:value_Earth_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Earth ;
-    net:hasNaming "Earth" ;
+net:value_Cerre_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Cerre ;
+    net:hasNaming "Cerre" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "Earth" .
+    net:hasValueLabel "Cerre" .
 
-net:value_Mars_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Mars ;
-    net:hasNaming "Mars" ;
+net:value_Eris_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Eris ;
+    net:hasNaming "Eris" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "Mars" .
+    net:hasValueLabel "Eris" .
 
-net:value_Mercury_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Mercury ;
-    net:hasNaming "Mercury" ;
+net:value_Gonggong_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Gonggong ;
+    net:hasNaming "Gonggong" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "Mercury" .
+    net:hasValueLabel "Gonggong" .
 
-net:value_Venus_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Venus ;
-    net:hasNaming "Venus" ;
+net:value_Haumea_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Haumea ;
+    net:hasNaming "Haumea" ;
     net:hasStructure "unknown" ;
-    net:hasValueLabel "Venus" .
+    net:hasValueLabel "Haumea" .
 
-ns1:and a ns1:Concept ;
+net:value_Makemake_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Makemake ;
+    net:hasNaming "Makemake" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Makemake" .
+
+net:value_Orcus_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Orcus ;
+    net:hasNaming "Orcus" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Orcus" .
+
+net:value_Pluto_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Pluto ;
+    net:hasNaming "Pluto" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Pluto" .
+
+net:value_Quaoar_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Quaoar ;
+    net:hasNaming "Quaoar" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Quaoar" .
+
+net:value_Sedna_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Sedna ;
+    net:hasNaming "Sedna" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Sedna" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> a ns3:accept-01 ;
+    ns3:accept-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    ns3:accept-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    ns3:accept-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> a <http://amr.isi.edu/entity-types#person> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1213,12 +1360,13 @@ ns1:and a ns1:Concept ;
 :AMR_Phenomena a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:AMR_Predicat_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Specific_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:asteroid ;
+    :label "asteroid" .
+
 :fromAmrLk a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
@@ -1229,26 +1377,13 @@ ns1:and a ns1:Concept ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_metal_m a :AMR_Leaf ;
-    :hasConcept :concept_metal ;
-    :hasVariable :variable_m .
-
-:leaf_more_m2 a :AMR_Leaf ;
-    :hasConcept :concept_more ;
-    :hasVariable :variable_m2 .
-
-:leaf_rock_r a :AMR_Leaf ;
-    :hasConcept :concept_rock ;
-    :hasVariable :variable_r .
-
-:leaf_small_s2 a :AMR_Leaf ;
-    :hasConcept :concept_small ;
-    :hasVariable :variable_s2 .
+:leaf_at-least_a2 a :AMR_Leaf ;
+    :hasConcept :concept_at-least ;
+    :hasVariable :variable_a2 .
 
-:phenomena_conjunction_and a owl:Class ;
-    rdfs:subClassOf :phenomena_conjunction ;
-    :hasConceptLink "and" ;
-    :label "conjunction-AND" .
+:leaf_trans-Neptunian_t a :AMR_Leaf ;
+    :hasConcept :concept_trans-Neptunian ;
+    :hasVariable :variable_t .
 
 :phenomena_modality a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena .
@@ -1258,230 +1393,274 @@ ns1:and a ns1:Concept ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG1" .
 
-:role_mod a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :getDirectPropertyName "hasFeature"^^xsd:string ;
-    :getPropertyType rdfs:subClassOf,
-        owl:ObjectProperty ;
-    :label "mod" ;
-    :toReifyAsConcept "mod" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
-
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-net:Atom_Property_Net a owl:Class ;
-    rdfs:subClassOf net:Property_Net .
-
 net:Net_Structure a owl:Class ;
     rdfs:label "Semantic Net Structure" ;
     rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
 
-net:Phenomena_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+net:atomClass_asteroid_a4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Cerre_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a4 ;
+    net:coverNode :leaf_asteroid_a4 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "unknown" .
 
-net:atomClass_system_s a net:Atom_Class_Net,
+net:atomClass_asteroid_a5 a net:Atom_Class_Net,
         net:Class_Net,
         net:Deprecated_Net ;
-    :role_mod net:atomClass_inner_ii ;
-    net:coverBaseNode :leaf_system_s ;
-    net:coverNode :leaf_system_s ;
-    net:hasClassName "system" ;
+    :role_name net:value_Eris_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a5 ;
+    net:coverNode :leaf_asteroid_a5 ;
+    net:hasClassName "asteroid" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "system" ;
+    net:hasNaming "asteroid" ;
     net:hasStructure "unknown" .
 
-net:has_relation_value a owl:AnnotationProperty ;
-    rdfs:label "has relation value" ;
-    rdfs:subPropertyOf net:has_object .
+net:atomClass_asteroid_a6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Haumea_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a6 ;
+    net:coverNode :leaf_asteroid_a6 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "unknown" .
 
-:AMR_Element a owl:Class ;
-    rdfs:subClassOf :AMR_Structure .
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_at-least_a2 ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-:leaf_and_a2 a :AMR_Leaf ;
-    :edge_a2_m :leaf_metal_m ;
-    :edge_a2_r :leaf_rock_r ;
-    :hasConcept :concept_and ;
-    :hasVariable :variable_a2 .
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Pluto_blankNode ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-:leaf_primary_p6 a :AMR_Leaf ;
-    :hasConcept :concept_primary ;
-    :hasVariable :variable_p6 .
+net:atomClass_object_o4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Makemake_blankNode ;
+    net:coverBaseNode :leaf_object_o4 ;
+    net:coverNode :leaf_object_o4 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-:role_name a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
+net:atomClass_object_o5 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Gonggong_blankNode ;
+    net:coverBaseNode :leaf_object_o5 ;
+    net:coverNode :leaf_object_o5 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-net:Value_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+net:atomClass_object_o6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Quaoar_blankNode ;
+    net:coverBaseNode :leaf_object_o6 ;
+    net:coverNode :leaf_object_o6 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-net:typeProperty a owl:AnnotationProperty ;
-    rdfs:label "type property" .
+net:atomClass_object_o7 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Sedna_blankNode ;
+    net:coverBaseNode :leaf_object_o7 ;
+    net:coverNode :leaf_object_o7 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_object_o8 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Orcus_blankNode ;
+    net:coverBaseNode :leaf_object_o8 ;
+    net:coverNode :leaf_object_o8 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> a ns1:and ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
-    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
-    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
+net:atomClass_person_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_person_p ;
+    net:coverNode :leaf_person_p ;
+    net:hasClassName "person" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "person" ;
+    net:hasStructure "unknown" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns2:asteroid a ns1:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:FrameRole a ns1:Role,
+ns1:Frame a ns1:Concept,
         owl:Class,
         owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:label "AMR-PropBank-Frame" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_NonCore_Role a owl:Class ;
-    rdfs:subClassOf :AMR_Role .
-
-:AMR_Role a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-:AMR_Value a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
-    :label "planet" .
-
-:leaf_planet_p a :AMR_Leaf ;
-    :edge_p_a :leaf_and_a ;
-    :edge_p_t :leaf_terrestrial_t ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p .
-
-:leaf_planet_p2 a :AMR_Leaf ;
-    :edge_p2_name_Mercury :value_Mercury ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p2 .
-
-:leaf_planet_p3 a :AMR_Leaf ;
-    :edge_p3_name_Venus :value_Venus ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p3 .
-
-:leaf_planet_p4 a :AMR_Leaf ;
-    :edge_p4_name_Earth :value_Earth ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p4 .
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
 
-:leaf_planet_p5 a :AMR_Leaf ;
-    :edge_p5_name_Mars :value_Mars ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p5 .
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
-sys:Out_Structure a owl:Class ;
-    rdfs:label "Output Ontology Structure" .
+:leaf_and_a3 a :AMR_Leaf ;
+    :edge_a3_a4 :leaf_asteroid_a4 ;
+    :edge_a3_a5 :leaf_asteroid_a5 ;
+    :edge_a3_a6 :leaf_asteroid_a6 ;
+    :edge_a3_o3 :leaf_object_o3 ;
+    :edge_a3_o4 :leaf_object_o4 ;
+    :edge_a3_o5 :leaf_object_o5 ;
+    :edge_a3_o6 :leaf_object_o6 ;
+    :edge_a3_o7 :leaf_object_o7 ;
+    :edge_a3_o8 :leaf_object_o8 ;
+    :edge_a3_t :leaf_trans-Neptunian_t ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a3 .
 
-net:atomClass_inner_ii a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_inner_ii ;
-    net:coverNode :leaf_inner_ii ;
-    net:hasClassName "inner" ;
-    net:hasNaming "inner" ;
-    net:hasStructure "unknown" .
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
 
 net:atomClass_planet_p2 a net:Atom_Class_Net,
-        net:Class_Net,
         net:Deprecated_Net ;
-    :role_name net:value_Mercury_blankNode ;
+    :role_mod net:atomClass_dwarf_d ;
     net:coverBaseNode :leaf_planet_p2 ;
     net:coverNode :leaf_planet_p2 ;
     net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
     net:hasNaming "planet" ;
     net:hasStructure "unknown" .
 
-net:atomClass_planet_p3 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Venus_blankNode ;
-    net:coverBaseNode :leaf_planet_p3 ;
-    net:coverNode :leaf_planet_p3 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
 
-net:atomClass_planet_p4 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Earth_blankNode ;
-    net:coverBaseNode :leaf_planet_p4 ;
-    net:coverNode :leaf_planet_p4 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
 
-net:atomClass_planet_p5 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Mars_blankNode ;
-    net:coverBaseNode :leaf_planet_p5 ;
-    net:coverNode :leaf_planet_p5 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
 
-net:atomClass_terrestrial_t a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_terrestrial_t ;
-    net:coverNode :leaf_terrestrial_t ;
-    net:hasClassName "terrestrial" ;
-    net:hasNaming "terrestrial" ;
-    net:hasStructure "unknown" .
+:leaf_asteroid_a4 a :AMR_Leaf ;
+    :edge_a4_name_Cerre :value_Cerre ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a4 .
+
+:leaf_asteroid_a5 a :AMR_Leaf ;
+    :edge_a5_name_Eris :value_Eris ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a5 .
+
+:leaf_asteroid_a6 a :AMR_Leaf ;
+    :edge_a6_name_Haumea :value_Haumea ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a6 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :edge_o3_name_Pluto :value_Pluto ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_object_o4 a :AMR_Leaf ;
+    :edge_o4_name_Makemake :value_Makemake ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o4 .
+
+:leaf_object_o5 a :AMR_Leaf ;
+    :edge_o5_name_Gonggong :value_Gonggong ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o5 .
+
+:leaf_object_o6 a :AMR_Leaf ;
+    :edge_o6_name_Quaoar :value_Quaoar ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o6 .
+
+:leaf_object_o7 a :AMR_Leaf ;
+    :edge_o7_name_Sedna :value_Sedna ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o7 .
+
+:leaf_object_o8 a :AMR_Leaf ;
+    :edge_o8_name_Orcus :value_Orcus ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o8 .
 
-net:netProperty a owl:AnnotationProperty ;
-    rdfs:label "netProperty" .
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
 
-net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
-    :role_op1 net:atomClass_planet_p2,
-        net:individual_Mercury_p2 ;
-    :role_op2 net:atomClass_planet_p3,
-        net:individual_Venus_p3 ;
-    :role_op3 net:atomClass_planet_p4,
-        net:individual_Earth_p4 ;
-    :role_op4 net:atomClass_planet_p5,
-        net:individual_Mars_p5 ;
-    net:coverBaseNode :leaf_and_a ;
-    net:coverNode :leaf_and_a ;
-    net:hasNaming "conjunction-AND" ;
-    net:hasPhenomenaRef "and" ;
-    net:hasPhenomenaType :phenomena_conjunction_and ;
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
     net:hasStructure "unknown" .
 
-<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
-    rdfs:subClassOf :AMR_Linked_Data .
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
 
 :AMR_ObjectProperty a owl:ObjectProperty ;
     rdfs:subPropertyOf owl:topObjectProperty .
 
 :AMR_Structure a owl:Class .
 
-:leaf_inner_ii a :AMR_Leaf ;
-    :hasConcept :concept_inner ;
-    :hasVariable :variable_ii .
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
 
-:leaf_system_s a :AMR_Leaf ;
-    :edge_s_ii :leaf_inner_ii ;
-    :hasConcept :concept_system ;
-    :hasVariable :variable_s .
+:leaf_object_o2 a :AMR_Leaf ;
+    :edge_o2_a2 :leaf_at-least_a2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
 
-:leaf_terrestrial_t a :AMR_Leaf ;
-    :hasConcept :concept_terrestrial ;
-    :hasVariable :variable_t .
+:leaf_person_p a :AMR_Leaf ;
+    :hasConcept :concept_person ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
 
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
-net:Deprecated_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
-net:Individual_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
 rdf:Property a owl:Class .
 
@@ -1491,14 +1670,20 @@ rdf:Property a owl:Class .
 :AMR_Term_Concept a owl:Class ;
     rdfs:subClassOf :AMR_Concept .
 
-:leaf_and_a a :AMR_Leaf ;
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:leaf_accept-01_a a :AMR_Leaf ;
+    :edge_a_o2 :leaf_object_o2 ;
+    :edge_a_p :leaf_person_p ;
     :edge_a_p2 :leaf_planet_p2 ;
-    :edge_a_p3 :leaf_planet_p3 ;
-    :edge_a_p4 :leaf_planet_p4 ;
-    :edge_a_p5 :leaf_planet_p5 ;
-    :hasConcept :concept_and ;
+    :hasConcept :concept_accept-01 ;
     :hasVariable :variable_a .
 
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
@@ -1506,26 +1691,43 @@ net:has_object a owl:AnnotationProperty ;
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
 :AMR_AnnotationProperty a owl:AnnotationProperty .
 
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
 sys:Entity a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
 
 net:Class_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Relation a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
-
 net:Atom_Class_Net a owl:Class ;
     rdfs:subClassOf net:Class_Net .
 
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
     rdfs:subPropertyOf net:objectProperty .
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
index b3e7ee5b453acaa7d92d4a8ac8a99d7828de794b..52ad021e9f7df230e8536f7fe07aa0ee7bf3c8f3 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -2,85 +2,94 @@
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 
-<https://tenet.tetras-libre.fr/extract-result#Earth> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Earth" ;
+<https://tenet.tetras-libre.fr/extract-result#Cerre> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Cerre" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#Mars> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Mars" ;
+<https://tenet.tetras-libre.fr/extract-result#Eris> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Eris" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Mercury" ;
+<https://tenet.tetras-libre.fr/extract-result#Gonggong> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Gonggong" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#Venus> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Venus" ;
+<https://tenet.tetras-libre.fr/extract-result#Haumea> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Haumea" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
-    rdfs:label "compose" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#Makemake> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Makemake" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
-    rdfs:label "hasPart" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#Orcus> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Orcus" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#inner-system> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ;
+<https://tenet.tetras-libre.fr/extract-result#Pluto> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Pluto" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#metal> a owl:Class ;
-    rdfs:label "metal" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#Quaoar> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Quaoar" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
-    rdfs:label "more" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#Sedna> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Sedna" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#primary> a owl:Class ;
-    rdfs:label "primary" ;
+<https://tenet.tetras-libre.fr/extract-result#accept> a owl:Class ;
+    rdfs:label "accept" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#at-least> a owl:Class ;
+    rdfs:label "at-least" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#rock> a owl:Class ;
-    rdfs:label "rock" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
-    rdfs:label "small" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#general> a owl:ObjectProperty ;
+    rdfs:label "general" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#inner> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#inner> ;
-    rdfs:label "inner" ;
-    rdfs:subClassOf ns1:Undetermined_Thing ;
+<https://tenet.tetras-libre.fr/extract-result#observe> a owl:ObjectProperty ;
+    rdfs:label "observe" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
-    rdfs:label "system" ;
+<https://tenet.tetras-libre.fr/extract-result#person> a owl:Class ;
+    rdfs:label "person" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class,
+<https://tenet.tetras-libre.fr/extract-result#trans-Neptunian> a owl:Class ;
+    rdfs:label "trans-Neptunian" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
         owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#terrestrial> ;
-    rdfs:label "terrestrial" ;
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
@@ -89,3 +98,8 @@
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
index 9329e63b99995bc7309f5579a2613347868f5147..d1b27cdfdb5889bb27308dba9aaa556e5f0d1e73 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -28,23 +28,29 @@ ns3:Role a rdfs:Class,
     ns3:hasSentence "Earth is a planet." ;
     ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns11:compose-01.ARG1 a ns11:FrameRole .
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
 
-ns11:compose-01.ARG2 a ns11:FrameRole .
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
 
-ns11:contain-01.ARG0 a ns11:FrameRole .
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
 
-ns11:contain-01.ARG1 a ns11:FrameRole .
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
 
-ns11:lie-07.ARG1 a ns11:FrameRole .
+ns11:include-91.ARG1 a ns11:FrameRole .
 
-ns11:lie-07.ARG2 a ns11:FrameRole .
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
 
 ns11:orbit-01.ARG0 a ns11:FrameRole .
 
-ns11:resemble-01.ARG1 a ns11:FrameRole .
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:possible-01.ARG1 a ns11:FrameRole .
 
-ns11:resemble-01.ARG2 a ns11:FrameRole .
+ns11:term-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG2 a ns11:FrameRole .
 
 ns2:domain a ns3:Role,
         owl:AnnotationProperty,
@@ -56,6 +62,10 @@ ns2:op1 a ns3:Role .
 
 ns2:op2 a ns3:Role .
 
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
 ns3:hasID a owl:AnnotationProperty .
 
 ns3:hasSentence a owl:AnnotationProperty .
@@ -73,82 +83,109 @@ ns3:root a owl:AnnotationProperty .
 :AMR_Root a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:edge_a2_m a :AMR_Edge ;
+:edge_a2_b a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_a2_r a :AMR_Edge ;
+:edge_a2_p a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_b2_o a :AMR_Edge ;
+:edge_a_m a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_b2_o2 a :AMR_Edge ;
-    :hasAmrRole :role_op2 ;
-    :hasRoleID "op2" .
+:edge_b_m3 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_b_a a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_h2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
 
-:edge_c2_a2 a :AMR_Edge ;
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h2_s2 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_c2_o3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
 
-:edge_c_b a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
 
-:edge_c_m2 a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_h_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
 
-:edge_c_o3 a :AMR_Edge ;
+:edge_ii2_b a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_l_b a :AMR_Edge ;
+:edge_ii2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_ii_p a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_l_b2 a :AMR_Edge ;
+:edge_ii_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_o2_p2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_m2_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_n_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
 
-:edge_o_p a :AMR_Edge ;
+:edge_o_s a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_p2_name_Jupiter a :AMR_Edge ;
-    :hasAmrRole :role_name ;
-    :hasRoleID "name" .
-
-:edge_p3_t a :AMR_Edge ;
+:edge_p2_d a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
-:edge_p_name_Mars a :AMR_Edge ;
-    :hasAmrRole :role_name ;
-    :hasRoleID "name" .
-
-:edge_r2_c2 a :AMR_Edge ;
+:edge_p3_h a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_r2_p3 a :AMR_Edge ;
+:edge_p_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_a a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_t_m a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t_u a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
 :fromAmrLkFramerole a owl:AnnotationProperty ;
     rdfs:subPropertyOf :fromAmrLk .
 
@@ -226,25 +263,11 @@ ns3:root a owl:AnnotationProperty .
     :hasConceptLink "or" ;
     :label "conjunction-OR" .
 
-:phenomena_degree a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena ;
-    :hasConceptLink "have-degree-91" ;
-    :label "degree" .
-
 :phenomena_modality_obligation a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "obligate-01" ;
     :label "obligation-modality" .
 
-:phenomena_modality_possible a owl:Class ;
-    rdfs:subClassOf :phenomena_modality ;
-    :hasConceptLink "allow-01",
-        "grant-01",
-        "likely-01",
-        "permit-01",
-        "possible-01" ;
-    :label "possible-modality" .
-
 :phenomena_modality_prohibition a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "prohibit-01" ;
@@ -291,14 +314,6 @@ ns3:root a owl:AnnotationProperty .
     :hasReification false ;
     :hasRelationName "quant" .
 
-:role_ARG3 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG3" .
-
-:role_ARG4 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG4" .
-
 :role_ARG5 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG5" .
@@ -340,6 +355,10 @@ ns3:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
 :role_op3 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op3" .
@@ -381,15 +400,11 @@ ns3:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:role_quant a owl:Class ;
-    rdfs:subClassOf :AMR_Specific_Role ;
-    :label "quant" .
-
-:root_WikiAbstract-SolarSystem-11 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> ;
-    :hasRootLeaf :leaf_contain-01_c ;
-    :hasSentenceID "WikiAbstract-SolarSystem-11" ;
-    :hasSentenceStatement "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." .
+:root_WikiAbstract-SolarSystem-17 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> ;
+    :hasRootLeaf :leaf_orbit-01_o ;
+    :hasSentenceID "WikiAbstract-SolarSystem-17" ;
+    :hasSentenceStatement "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -454,43 +469,36 @@ cprm:targetOntologyURI a rdf:Property ;
     rdfs:range xsd:string ;
     rdfs:subPropertyOf cprm:configParamProperty .
 
-<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Jupiter" ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#Mars> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Mars" ;
+<https://tenet.tetras-libre.fr/extract-result#after> a owl:ObjectProperty ;
+    rdfs:label "after" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#asteroid-belt-contain-object> a owl:Class ;
+<https://tenet.tetras-libre.fr/extract-result#body-include-body> a owl:Class ;
     rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#contain> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
-        <https://tenet.tetras-libre.fr/extract-result#asteroid-belt> ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#body> ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#between> a owl:Class ;
-    rdfs:label "between" ;
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
     rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#compose-resemble-terrestrial-planet> a owl:Class ;
-    rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#resemble> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> ],
-        <https://tenet.tetras-libre.fr/extract-result#compose> ;
+<https://tenet.tetras-libre.fr/extract-result#many> a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
-    rdfs:label "lie" ;
-    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#moon> a owl:Class ;
+    rdfs:label "moon" ;
+    rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#metal> a owl:Class ;
-    rdfs:label "metal" ;
-    rdfs:subClassOf sys:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
 <https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
@@ -498,16 +506,47 @@ cprm:targetOntologyURI a rdf:Property ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
-    rdfs:label "orbit" ;
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#rock> a owl:Class ;
-    rdfs:label "rock" ;
+<https://tenet.tetras-libre.fr/extract-result#planet-include-dwarf-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#dwarf-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-body> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
     rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
+<https://tenet.tetras-libre.fr/extract-result#term> a owl:ObjectProperty ;
+    rdfs:label "term" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#usual> a owl:Class ;
+    rdfs:label "usual" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
 
 net:Composite_Property_Net a owl:Class ;
@@ -530,57 +569,109 @@ net:atomOf a owl:AnnotationProperty ;
     rdfs:label "atom of" ;
     rdfs:subPropertyOf net:typeProperty .
 
-net:atomProperty_lie_l a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_belt_b,
-        net:compositeClass_asteroid-belt_b ;
-    :role_ARG2 net:atomClass_between_b2,
-        net:atomProperty_between_b2 ;
-    net:coverBaseNode :leaf_lie-07_l ;
-    net:coverNode :leaf_lie-07_l ;
-    net:hasNaming "lie" ;
-    net:hasPropertyName "lie" ;
-    net:hasPropertyName01 "lieing" ;
-    net:hasPropertyName10 "lie-by" ;
-    net:hasPropertyName12 "lie-of" ;
+net:atomProperty_after_a a net:Atom_Property_Net ;
+    :role_op1 net:atomClass_moon_m ;
+    net:coverBaseNode :leaf_after_a ;
+    net:coverNode :leaf_after_a ;
+    net:hasNaming "after" ;
+    net:hasPropertyName "after" ;
+    net:hasPropertyName01 "aftering" ;
+    net:hasPropertyName10 "after-by" ;
+    net:hasPropertyName12 "after-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_moon_m .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s .
+
+net:atomProperty_term_t a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s ;
+    :role_ARG2 net:atomClass_moon_m ;
+    :role_mod net:atomClass_usual_u ;
+    net:coverBaseNode :leaf_term-01_t ;
+    net:coverNode :leaf_term-01_t ;
+    net:hasNaming "term" ;
+    net:hasPropertyName "term" ;
+    net:hasPropertyName01 "terming" ;
+    net:hasPropertyName10 "term-by" ;
+    net:hasPropertyName12 "term-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_belt_b,
-        :leaf_between_b2 .
+    net:targetArgumentNode :leaf_moon_m,
+        :leaf_satellite_s,
+        :leaf_usual_u .
 
 net:atomType a owl:AnnotationProperty ;
     rdfs:label "atom type" ;
     rdfs:subPropertyOf net:objectType .
 
-net:compositeClass_asteroid-belt-contain-object_b a net:Composite_Class_Net ;
-    :role_mod net:atomClass_asteroid_a ;
-    net:composeFrom net:atomClass_object_o3,
-        net:atomProperty_contain_c,
-        net:compositeClass_asteroid-belt_b ;
-    net:coverBaseNode :leaf_belt_b ;
-    net:coverNode :leaf_asteroid_a,
-        :leaf_belt_b,
-        :leaf_contain-01_c,
-        :leaf_object_o3 ;
-    net:hasMotherClassNet net:compositeClass_asteroid-belt_b ;
-    net:hasNaming "asteroid-belt-contain-object" ;
-    net:hasRestriction net:restriction_contain-object_c ;
+net:compositeClass_body-include-body_b a net:Composite_Class_Net ;
+    :role_quant net:atomClass_many_m3 ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_body_b2,
+        net:atomProperty_include_ii2 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_body_b2,
+        :leaf_include-91_ii2 ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "body-include-body" ;
+    net:hasRestriction net:restriction_include-body_ii2 ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_planet-include-dwarf-planet_p a net:Composite_Class_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomProperty_include_ii,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_include-91_ii,
+        :leaf_planet_p,
+        :leaf_planet_p2 ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "planet-include-dwarf-planet" ;
+    net:hasRestriction net:restriction_include-dwarf-planet_ii ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_satellite-orbit-body_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_satellite_s,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_body_b,
+        :leaf_orbit-01_o,
+        :leaf_satellite_s ;
+    net:hasMotherClassNet net:atomClass_satellite_s ;
+    net:hasNaming "satellite-orbit-body" ;
+    net:hasRestriction net:restriction_orbit-body_o ;
     net:hasStructure "unknown" .
 
-net:compositeClass_compose-resemble-terrestrial-planet_c2 a net:Composite_Class_Net ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_ARG2 net:phenomena_conjunction-AND_a2 ;
-    net:composeFrom net:atomClass_compose_c2,
-        net:atomProperty_resemble_r2,
-        net:compositeClass_terrestrial-planet_p3 ;
-    net:coverBaseNode :leaf_compose-01_c2 ;
-    net:coverNode :leaf_compose-01_c2,
-        :leaf_planet_p3,
-        :leaf_resemble-01_r2,
-        :leaf_terrestrial_t ;
-    net:hasMotherClassNet net:atomClass_compose_c2 ;
-    net:hasNaming "compose-resemble-terrestrial-planet" ;
-    net:hasRestriction net:restriction_resemble-terrestrial-planet_r2 ;
+net:compositeClass_satellite-orbit-planet_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomClass_satellite_s,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_orbit-01_o,
+        :leaf_planet_p,
+        :leaf_satellite_s ;
+    net:hasMotherClassNet net:atomClass_satellite_s ;
+    net:hasNaming "satellite-orbit-planet" ;
+    net:hasRestriction net:restriction_orbit-planet_o ;
     net:hasStructure "unknown" .
 
 net:entityClass a owl:AnnotationProperty ;
@@ -678,24 +769,14 @@ net:has_target a owl:AnnotationProperty ;
     rdfs:label "has target" ;
     rdfs:subPropertyOf net:has_relation_value .
 
-net:individual_asteroid_a a net:Individual_Net ;
-    net:composeFrom net:atomClass_asteroid_a ;
-    net:coverBaseNode :leaf_asteroid_a ;
-    net:coverNode :leaf_asteroid_a ;
-    net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "asteroid" ;
-    net:hasMotherClassNet net:atomClass_asteroid_a ;
-    net:hasNaming "asteroid" ;
-    net:hasStructure "unknown" .
-
-net:individual_terrestrial_t a net:Individual_Net ;
-    net:composeFrom net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_terrestrial_t ;
-    net:coverNode :leaf_terrestrial_t ;
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
     net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "terrestrial" ;
-    net:hasMotherClassNet net:atomClass_terrestrial_t ;
-    net:hasNaming "terrestrial" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
     net:hasStructure "unknown" .
 
 net:inverse_direction a owl:NamedIndividual .
@@ -722,6 +803,28 @@ net:modCat2 a owl:AnnotationProperty ;
 
 net:normal_direction a owl:NamedIndividual .
 
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_body_b2 ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m4 ;
+    :role_ARG4 net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:phenomena_possible-modality_p3 a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:phenomena_degree_h ;
+    net:coverBaseNode :leaf_possible-01_p3 ;
+    net:coverNode :leaf_possible-01_p3 ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "unknown" .
+
 net:relationOf a owl:AnnotationProperty ;
     rdfs:label "relation of" ;
     rdfs:subPropertyOf net:typeProperty .
@@ -734,20 +837,42 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> a ns11:lie-07 ;
-    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
-    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> a ns11:resemble-01 ;
-    ns11:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
-    ns11:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> a ns3:AMR ;
-    ns3:has-id "WikiAbstract-SolarSystem-11" ;
-    ns3:has-sentence "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." ;
-    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> a ns11:possible-01 ;
+    ns11:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-17" ;
+    ns3:has-sentence "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> a ns11:term-01 ;
+    ns11:term-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:term-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
 <http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
@@ -756,143 +881,175 @@ net:verbClass a owl:AnnotationProperty ;
 ns3:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:NamedEntity a ns3:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-EntityType",
-        "AMR-Term" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
+:concept_after rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:after ;
+    :label "after" .
 
 :concept_and rdfs:subClassOf :AMR_Relation_Concept ;
     :fromAmrLk ns3:and ;
     :hasPhenomenaLink :phenomena_conjunction_and ;
     :label "and" .
 
-:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:asteroid ;
-    :label "asteroid" .
-
-:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:belt ;
-    :label "belt" .
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
 
-:concept_between rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:between ;
-    :label "between" .
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
 
-:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:compose-01 ;
-    :label "compose-01" .
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
 
-:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:contain-01 ;
-    :label "contain-01" .
+:concept_moon rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#moon> ;
+    :label "moon" .
 
-:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:lie-07 ;
-    :label "lie-07" .
-
-:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:metal ;
-    :label "metal" .
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
 
 :concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
     :fromAmrLk ns3:most ;
     :label "most" .
 
-:concept_object rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:object ;
-    :label "object" .
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
 
-:concept_resemble-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:resemble-01 ;
-    :label "resemble-01" .
+:concept_term-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:term-01 ;
+    :label "term-01" .
 
-:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:rock ;
-    :label "rock" .
+:concept_usual rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:usual ;
+    :label "usual" .
 
-:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:terrestrial ;
-    :label "terrestrial" .
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
 
 :variable_a a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
     :label "a" .
 
 :variable_a2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
     :label "a2" .
 
 :variable_b a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
     :label "b" .
 
 :variable_b2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
     :label "b2" .
 
-:variable_c a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> ;
-    :label "c" .
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    :label "d" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> ;
+    :label "ii" .
 
-:variable_c2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
-    :label "c2" .
+:variable_ii2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> ;
+    :label "ii2" .
 
 :variable_l a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
     :label "l" .
 
 :variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
     :label "m" .
 
 :variable_m2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
     :label "m2" .
 
-:variable_o a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
-    :label "o" .
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    :label "m3" .
 
-:variable_o2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
-    :label "o2" .
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    :label "m4" .
 
-:variable_o3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
-    :label "o3" .
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> ;
+    :label "o" .
 
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
-    :label "p" ;
-    :name "Mars" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    :label "p" .
 
 :variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
-    :label "p2" ;
-    :name "Jupiter" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    :label "p2" .
 
 :variable_p3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> ;
     :label "p3" .
 
-:variable_r a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
-    :label "r" .
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    :label "s" .
 
-:variable_r2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> ;
-    :label "r2" .
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    :label "s2" .
 
 :variable_t a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> ;
     :label "t" .
 
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    :label "u" .
+
 sys:Degree a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
 
@@ -901,50 +1058,14 @@ sys:Feature a owl:Class ;
 
 sys:Out_AnnotationProperty a owl:AnnotationProperty .
 
-<https://tenet.tetras-libre.fr/extract-result#asteroid> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
-    rdfs:label "asteroid" ;
-    rdfs:subClassOf sys:Undetermined_Thing ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#asteroid-belt> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#belt> ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#belt> a owl:Class ;
-    rdfs:label "belt" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#compose> a owl:Class ;
-    rdfs:label "compose" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
-    rdfs:label "contain" ;
-    rdfs:subPropertyOf sys:Out_ObjectProperty ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
-    rdfs:label "object" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#resemble> a owl:ObjectProperty ;
-    rdfs:label "resemble" ;
-    rdfs:subPropertyOf sys:Out_ObjectProperty ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class,
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
         owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#terrestrial> ;
-    rdfs:label "terrestrial" ;
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
     rdfs:subClassOf sys:Undetermined_Thing ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> a owl:Class ;
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
     rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
     sys:fromStructure "unknown" .
 
@@ -954,22 +1075,51 @@ net:Axiom_Net a owl:Class ;
 net:Feature a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
-net:Phenomena_Net a owl:Class ;
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_between_b2 a net:Atom_Class_Net,
+net:atomClass_large_l a net:Atom_Class_Net,
         net:Class_Net ;
-    :role_op1 net:atomProperty_orbit_o ;
-    :role_op2 net:atomProperty_orbit_o2 ;
-    net:composeFrom net:atomProperty_between_b2 ;
-    net:coverBaseNode :leaf_between_b2 ;
-    net:coverNode :leaf_between_b2 ;
-    net:hasClassName "between" ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "between" ;
+    net:hasNaming "large" ;
     net:hasStructure "unknown" .
 
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_usual_u a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_usual_u ;
+    net:coverNode :leaf_usual_u ;
+    net:hasClassName "usual" ;
+    net:hasNaming "usual" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
 net:atomProperty_most_m2 a net:Atom_Property_Net ;
+    :role_quant net:value_6_blankNode ;
     net:coverBaseNode :leaf_most_m2 ;
     net:coverNode :leaf_most_m2 ;
     net:hasNaming "most" ;
@@ -979,163 +1129,225 @@ net:atomProperty_most_m2 a net:Atom_Property_Net ;
     net:hasPropertyName12 "most-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" .
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_6 .
 
 net:has_value a owl:AnnotationProperty ;
     rdfs:subPropertyOf net:netProperty .
 
-net:individual_Jupiter_p2 a net:Individual_Net ;
-    :role_name net:value_Jupiter_blankNode ;
-    net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_planet_p2 ;
-    net:hasIndividualLabel "Jupiter" ;
-    net:hasMotherClassNet net:atomClass_planet_p2 ;
-    net:hasNaming "Jupiter" ;
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p ;
+    :role_op2 net:atomClass_body_b ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
     net:hasStructure "unknown" .
 
-net:individual_Mars_p a net:Individual_Net ;
-    :role_name net:value_Mars_blankNode ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p ;
-    net:hasIndividualLabel "Mars" ;
-    net:hasMotherClassNet net:atomClass_planet_p ;
-    net:hasNaming "Mars" ;
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
     net:hasStructure "unknown" .
 
-net:objectType a owl:AnnotationProperty ;
-    rdfs:label "object type" ;
-    rdfs:subPropertyOf net:objectProperty .
+net:restriction_include-body_ii2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_body_b2,
+        net:atomProperty_include_ii2 ;
+    net:coverBaseNode :leaf_include-91_ii2 ;
+    net:coverNode :leaf_body_b2,
+        :leaf_include-91_ii2 ;
+    net:hasNaming "include-body" ;
+    net:hasRestrictionNetValue net:atomClass_body_b2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii2 ;
+    net:hasStructure "unknown" .
 
-net:restriction_contain-object_c a net:Restriction_Net ;
-    net:composeFrom net:atomClass_object_o3,
-        net:atomProperty_contain_c ;
-    net:coverBaseNode :leaf_contain-01_c ;
-    net:coverNode :leaf_contain-01_c,
-        :leaf_object_o3 ;
-    net:hasNaming "contain-object" ;
-    net:hasRestrictionNetValue net:atomClass_object_o3 ;
-    net:hasRestrictionOnProperty net:atomProperty_contain_c ;
+net:restriction_include-dwarf-planet_ii a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_include_ii,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_include-91_ii,
+        :leaf_planet_p2 ;
+    net:hasNaming "include-dwarf-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_dwarf-planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
     net:hasStructure "unknown" .
 
-net:restriction_resemble-terrestrial-planet_r2 a net:Restriction_Net ;
-    net:composeFrom net:atomProperty_resemble_r2,
-        net:compositeClass_terrestrial-planet_p3 ;
-    net:coverBaseNode :leaf_resemble-01_r2 ;
-    net:coverNode :leaf_planet_p3,
-        :leaf_resemble-01_r2,
-        :leaf_terrestrial_t ;
-    net:hasNaming "resemble-terrestrial-planet" ;
-    net:hasRestrictionNetValue net:compositeClass_terrestrial-planet_p3 ;
-    net:hasRestrictionOnProperty net:atomProperty_resemble_r2 ;
+net:restriction_orbit-body_o a net:Restriction_Net ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_body_b,
+        :leaf_orbit-01_o ;
+    net:hasNaming "orbit-body" ;
+    net:hasRestrictionNetValue net:atomClass_body_b ;
+    net:hasRestrictionOnProperty net:atomProperty_orbit_o ;
+    net:hasStructure "unknown" .
+
+net:restriction_orbit-planet_o a net:Restriction_Net ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o,
+        :leaf_planet_p ;
+    net:hasNaming "orbit-planet" ;
+    net:hasRestrictionNetValue net:atomClass_planet_p ;
+    net:hasRestrictionOnProperty net:atomProperty_orbit_o ;
     net:hasStructure "unknown" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> a ns2:asteroid ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> a ns3:after ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> a ns3:and ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> a ns3:between ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> a ns2:dwarf ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> a ns11:contain-01 ;
-    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
-    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> a ns11:compose-01 ;
-    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
-    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> a ns2:large ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> a ns2:metal ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> a ns3:most ;
+    ns2:quant "6" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> a ns3:most ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> a ns2:many ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> a ns11:orbit-01 ;
-    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> a ns3:more ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> a ns11:orbit-01 ;
-    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Mars" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> a ns2:small ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Jupiter" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> a ns2:usual ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> a <http://amr.isi.edu/entity-types#planet> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+<http://amr.isi.edu/entity-types#moon> a ns3:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> a ns2:rock ;
+ns11:natural-03 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> a ns2:terrestrial ;
+ns11:orbit-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:compose-01 a ns3:Frame ;
+ns11:possible-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:contain-01 a ns3:Frame ;
+ns11:term-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:lie-07 a ns3:Frame ;
+ns2:dwarf a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:resemble-01 a ns3:Frame ;
+ns2:large a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:asteroid a ns3:Concept ;
+ns2:many a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:belt a ns3:Concept ;
+ns2:satellite a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:metal a ns3:Concept ;
+ns2:small a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:object a ns3:Concept ;
+ns2:usual a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:rock a ns3:Concept ;
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:terrestrial a ns3:Concept ;
+ns3:after a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 ns3:and a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:between a ns3:Concept ;
+ns3:more a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 ns3:most a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:orbit-01 ;
-    :label "orbit-01" .
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:body ;
+    :label "body" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
 
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_lie-07_l a :AMR_Leaf ;
-    :edge_l_b :leaf_belt_b ;
-    :edge_l_b2 :leaf_between_b2 ;
-    :hasConcept :concept_lie-07 ;
-    :hasVariable :variable_l .
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_b2 :leaf_body_b2 ;
+    :edge_h2_m4 :leaf_more_m4 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s :leaf_satellite_s ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:leaf_possible-01_p3 a :AMR_Leaf ;
+    :edge_p3_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p3 .
+
+:leaf_term-01_t a :AMR_Leaf ;
+    :edge_t_a :leaf_after_a ;
+    :edge_t_m :leaf_moon_m ;
+    :edge_t_s :leaf_satellite_s ;
+    :edge_t_u :leaf_usual_u ;
+    :hasConcept :concept_term-01 ;
+    :hasVariable :variable_t .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1149,168 +1361,97 @@ ns3:most a ns3:Concept ;
     :hasConceptLink "and" ;
     :label "conjunction-AND" .
 
-:role_name a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
-
-:role_op1 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
 
-:role_op2 a owl:Class,
+:role_ARG3 a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op2" .
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
 
-:value_Jupiter a :AMR_Value ;
-    rdfs:label "Jupiter" .
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
 
-:value_Mars a :AMR_Value ;
-    rdfs:label "Mars" .
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
 
-sys:Undetermined_Thing a owl:Class ;
-    rdfs:subClassOf sys:Out_Structure .
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
 
-net:Property_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
 
-net:Restriction_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
 
-net:Value_Net a owl:Class ;
+net:Property_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_metal_m a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_metal_m ;
-    net:coverNode :leaf_metal_m ;
-    net:hasClassName "metal" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "metal" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_planet_p a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Mars_blankNode ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_planet_p2 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Jupiter_blankNode ;
-    net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_planet_p2 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
+net:atomClass_many_m3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_many_m3 ;
+    net:coverNode :leaf_many_m3 ;
+    net:hasClassName "many" ;
+    net:hasNaming "many" ;
     net:hasStructure "unknown" .
 
-net:atomClass_rock_r a net:Atom_Class_Net,
+net:atomClass_moon_m a net:Atom_Class_Net,
         net:Class_Net ;
-    net:coverBaseNode :leaf_rock_r ;
-    net:coverNode :leaf_rock_r ;
-    net:hasClassName "rock" ;
+    net:coverBaseNode :leaf_moon_m ;
+    net:coverNode :leaf_moon_m ;
+    net:hasClassName "moon" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "rock" ;
+    net:hasNaming "moon" ;
     net:hasStructure "unknown" .
 
-net:atomProperty_between_b2 a net:Atom_Property_Net,
-        net:Deprecated_Net ;
-    :role_op1 net:atomProperty_orbit_o ;
-    :role_op2 net:atomProperty_orbit_o2 ;
-    net:coverBaseNode :leaf_between_b2 ;
-    net:coverNode :leaf_between_b2 ;
-    net:hasNaming "between" ;
-    net:hasPropertyName "between" ;
-    net:hasPropertyName01 "betweening" ;
-    net:hasPropertyName10 "between-by" ;
-    net:hasPropertyName12 "between-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_orbit-01_o,
-        :leaf_orbit-01_o2 .
-
-net:atomProperty_compose_c2 a net:Atom_Property_Net,
-        net:Deprecated_Net ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_ARG2 net:atomClass_metal_m,
-        net:atomClass_rock_r,
-        net:phenomena_conjunction-AND_a2 ;
-    net:coverBaseNode :leaf_compose-01_c2 ;
-    net:coverNode :leaf_compose-01_c2 ;
-    net:hasNaming "compose" ;
-    net:hasPropertyName "compose" ;
-    net:hasPropertyName01 "composeing" ;
-    net:hasPropertyName10 "compose-by" ;
-    net:hasPropertyName12 "compose-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_and_a2,
-        :leaf_object_o3 .
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
 
-net:atomProperty_orbit_o a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_planet_p,
-        net:individual_Mars_p ;
-    net:coverBaseNode :leaf_orbit-01_o ;
-    net:coverNode :leaf_orbit-01_o ;
-    net:hasNaming "orbit" ;
-    net:hasPropertyName "orbit" ;
-    net:hasPropertyName01 "orbiting" ;
-    net:hasPropertyName10 "orbit-by" ;
-    net:hasPropertyName12 "orbit-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_planet_p .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> a ns2:body ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-net:atomProperty_orbit_o2 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_planet_p2,
-        net:individual_Jupiter_p2 ;
-    net:coverBaseNode :leaf_orbit-01_o2 ;
-    net:coverNode :leaf_orbit-01_o2 ;
-    net:hasNaming "orbit" ;
-    net:hasPropertyName "orbit" ;
-    net:hasPropertyName01 "orbiting" ;
-    net:hasPropertyName10 "orbit-by" ;
-    net:hasPropertyName12 "orbit-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_planet_p2 .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> a ns2:body ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-net:objectProperty a owl:AnnotationProperty ;
-    rdfs:label "object attribute" .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> a <http://amr.isi.edu/entity-types#moon> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-net:value_Jupiter_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Jupiter ;
-    net:hasNaming "Jupiter" ;
-    net:hasStructure "unknown" ;
-    net:hasValueLabel "Jupiter" .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-net:value_Mars_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Mars ;
-    net:hasNaming "Mars" ;
-    net:hasStructure "unknown" ;
-    net:hasValueLabel "Mars" .
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> a ns2:belt ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+ns11:have-degree-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> a ns2:object ;
+ns11:include-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:orbit-01 a ns3:Frame ;
+ns2:body a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1319,16 +1460,12 @@ ns11:orbit-01 a ns3:Frame ;
 :AMR_Phenomena a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
 :AMR_Specific_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:AMR_Value a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
-    :label "planet" .
-
 :fromAmrLk a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
@@ -1339,41 +1476,63 @@ ns11:orbit-01 a ns3:Frame ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_metal_m a :AMR_Leaf ;
-    :hasConcept :concept_metal ;
-    :hasVariable :variable_m .
+:leaf_after_a a :AMR_Leaf ;
+    :edge_a_m :leaf_moon_m ;
+    :hasConcept :concept_after ;
+    :hasVariable :variable_a .
 
-:leaf_rock_r a :AMR_Leaf ;
-    :hasConcept :concept_rock ;
-    :hasVariable :variable_r .
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_most_m2 ;
+    :edge_h_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
 
-:phenomena_modality a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena .
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
 
-:role_ARG0 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG0" .
+:leaf_many_m3 a :AMR_Leaf ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m3 .
 
-:role_ARG2 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG2" .
+:leaf_more_m4 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
 
-:role_mod a owl:Class,
+:leaf_most_m2 a :AMR_Leaf ;
+    :edge_m2_quant_6 :value_6 ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_quant a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :getDirectPropertyName "hasFeature"^^xsd:string ;
-    :getPropertyType rdfs:subClassOf,
-        owl:ObjectProperty ;
-    :label "mod" ;
-    :toReifyAsConcept "mod" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
 
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
 <https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
     rdfs:label "planet" ;
     rdfs:subClassOf sys:Entity ;
@@ -1383,227 +1542,191 @@ net:Net_Structure a owl:Class ;
     rdfs:label "Semantic Net Structure" ;
     rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
 
-net:atomClass_compose_c2 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_ARG2 net:phenomena_conjunction-AND_a2 ;
-    net:composeFrom net:atomProperty_compose_c2 ;
-    net:coverBaseNode :leaf_compose-01_c2 ;
-    net:coverNode :leaf_compose-01_c2 ;
-    net:hasClassName "compose" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "compose" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_planet_p3 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_planet_p3 ;
-    net:coverNode :leaf_planet_p3 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
-
-net:atomProperty_contain_c a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_belt_b,
-        net:compositeClass_asteroid-belt_b ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_mod net:atomProperty_most_m2 ;
-    net:coverBaseNode :leaf_contain-01_c ;
-    net:coverNode :leaf_contain-01_c ;
-    net:hasNaming "contain" ;
-    net:hasPropertyName "contain" ;
-    net:hasPropertyName01 "containing" ;
-    net:hasPropertyName10 "contain-by" ;
-    net:hasPropertyName12 "contain-of" ;
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_planet_p ;
+    :role_ARG2 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_belt_b,
-        :leaf_most_m2,
-        :leaf_object_o3 .
-
-net:atomProperty_resemble_r2 a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_compose_c2,
-        net:atomProperty_compose_c2 ;
-    :role_ARG2 net:atomClass_planet_p3,
-        net:compositeClass_terrestrial-planet_p3 ;
-    net:coverBaseNode :leaf_resemble-01_r2 ;
-    net:coverNode :leaf_resemble-01_r2 ;
-    net:hasNaming "resemble" ;
-    net:hasPropertyName "resemble" ;
-    net:hasPropertyName01 "resembleing" ;
-    net:hasPropertyName10 "resemble-by" ;
-    net:hasPropertyName12 "resemble-of" ;
+    net:targetArgumentNode :leaf_planet_p,
+        :leaf_planet_p2 .
+
+net:atomProperty_include_ii2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_body_b ;
+    :role_ARG2 net:atomClass_body_b2 ;
+    net:coverBaseNode :leaf_include-91_ii2 ;
+    net:coverNode :leaf_include-91_ii2 ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_compose-01_c2,
-        :leaf_planet_p3 .
+    net:targetArgumentNode :leaf_body_b,
+        :leaf_body_b2 .
 
 net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
-    :role_op1 net:atomClass_rock_r ;
-    :role_op2 net:atomClass_metal_m ;
-    net:coverBaseNode :leaf_and_a2 ;
-    net:coverNode :leaf_and_a2 ;
-    net:hasNaming "conjunction-AND" ;
-    net:hasPhenomenaRef "and" ;
-    net:hasPhenomenaType :phenomena_conjunction_and ;
-    net:hasStructure "unknown" .
+net:value_6_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_6 ;
+    net:hasNaming "6" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "6" .
 
-<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "6" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> a ns2:satellite ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
 :leaf_and_a2 a :AMR_Leaf ;
-    :edge_a2_m :leaf_metal_m ;
-    :edge_a2_r :leaf_rock_r ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_p :leaf_planet_p ;
     :hasConcept :concept_and ;
     :hasVariable :variable_a2 .
 
-:leaf_most_m2 a :AMR_Leaf ;
-    :hasConcept :concept_most ;
-    :hasVariable :variable_m2 .
+:leaf_usual_u a :AMR_Leaf ;
+    :hasConcept :concept_usual ;
+    :hasVariable :variable_u .
 
-:leaf_orbit-01_o a :AMR_Leaf ;
-    :edge_o_p :leaf_planet_p ;
-    :hasConcept :concept_orbit-01 ;
-    :hasVariable :variable_o .
+:value_6 a :AMR_Value ;
+    rdfs:label "6" .
 
-:leaf_orbit-01_o2 a :AMR_Leaf ;
-    :edge_o2_p2 :leaf_planet_p2 ;
-    :hasConcept :concept_orbit-01 ;
-    :hasVariable :variable_o2 .
-
-:role_ARG1 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG1" .
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:Composite_Class_Net a owl:Class ;
-    rdfs:subClassOf net:Class_Net .
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:Individual_Net a owl:Class ;
+net:Restriction_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_belt_b a net:Atom_Class_Net,
+net:atomClass_planet_p2 a net:Atom_Class_Net,
         net:Class_Net,
         net:Deprecated_Net ;
-    :role_mod net:atomClass_asteroid_a ;
-    net:coverBaseNode :leaf_belt_b ;
-    net:coverNode :leaf_belt_b ;
-    net:hasClassName "belt" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "belt" ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_asteroid-belt_b a net:Class_Net,
-        net:Composite_Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_asteroid_a ;
-    net:composeFrom net:atomClass_asteroid_a,
-        net:atomClass_belt_b ;
-    net:coverBaseNode :leaf_belt_b ;
-    net:coverNode :leaf_asteroid_a,
-        :leaf_belt_b ;
-    net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_belt_b ;
-    net:hasNaming "asteroid-belt" ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_terrestrial-planet_p3 a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_terrestrial_t ;
-    net:composeFrom net:atomClass_planet_p3,
-        net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_planet_p3 ;
-    net:coverNode :leaf_planet_p3,
-        :leaf_terrestrial_t ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
     net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_planet_p3 ;
-    net:hasNaming "terrestrial-planet" ;
+    net:hasNaming "planet" ;
     net:hasStructure "unknown" .
 
 net:typeProperty a owl:AnnotationProperty ;
     rdfs:label "type property" .
 
-ns3:Frame a ns3:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Frame" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_NonCore_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-:leaf_resemble-01_r2 a :AMR_Leaf ;
-    :edge_r2_c2 :leaf_compose-01_c2 ;
-    :edge_r2_p3 :leaf_planet_p3 ;
-    :hasConcept :concept_resemble-01 ;
-    :hasVariable :variable_r2 .
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_p :leaf_planet_p ;
+    :edge_ii_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_include-91_ii2 a :AMR_Leaf ;
+    :edge_ii2_b :leaf_body_b ;
+    :edge_ii2_b2 :leaf_body_b2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii2 .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
 
 sys:Out_Structure a owl:Class ;
     rdfs:label "Output Ontology Structure" .
 
-net:atomClass_terrestrial_t a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_terrestrial_t ;
-    net:coverNode :leaf_terrestrial_t ;
-    net:hasClassName "terrestrial" ;
-    net:hasNaming "terrestrial" ;
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:atomClass_body_b2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_body_b2 ;
+    net:coverNode :leaf_body_b2 ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_dwarf-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
     net:hasStructure "unknown" .
 
 net:netProperty a owl:AnnotationProperty ;
     rdfs:label "netProperty" .
 
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_ObjectProperty a owl:ObjectProperty ;
     rdfs:subPropertyOf owl:topObjectProperty .
 
 :AMR_Structure a owl:Class .
 
-:leaf_between_b2 a :AMR_Leaf ;
-    :edge_b2_o :leaf_orbit-01_o ;
-    :edge_b2_o2 :leaf_orbit-01_o2 ;
-    :hasConcept :concept_between ;
-    :hasVariable :variable_b2 .
-
-:leaf_contain-01_c a :AMR_Leaf ;
-    :edge_c_b :leaf_belt_b ;
-    :edge_c_m2 :leaf_most_m2 ;
-    :edge_c_o3 :leaf_object_o3 ;
-    :hasConcept :concept_contain-01 ;
-    :hasVariable :variable_c .
-
-:leaf_planet_p a :AMR_Leaf ;
-    :edge_p_name_Mars :value_Mars ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p .
-
-:leaf_planet_p2 a :AMR_Leaf ;
-    :edge_p2_name_Jupiter :value_Jupiter ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p2 .
+:leaf_moon_m a :AMR_Leaf ;
+    :hasConcept :concept_moon ;
+    :hasVariable :variable_m .
 
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
-net:atomClass_asteroid_a a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_asteroid_a ;
-    net:coverNode :leaf_asteroid_a ;
-    net:hasClassName "asteroid" ;
-    net:hasNaming "asteroid" ;
-    net:hasStructure "unknown" .
+net:atomProperty_orbit_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_satellite_s ;
+    :role_ARG1 net:atomClass_body_b,
+        net:atomClass_planet_p,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_satellite_s .
 
 rdf:Property a owl:Class .
 
@@ -1613,77 +1736,97 @@ rdf:Property a owl:Class .
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:AMR_Term_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
-:leaf_asteroid_a a :AMR_Leaf ;
-    :hasConcept :concept_asteroid ;
-    :hasVariable :variable_a .
-
-sys:Out_ObjectProperty a owl:ObjectProperty .
-
-net:Relation a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
+:leaf_body_b2 a :AMR_Leaf ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b2 .
 
-net:atomClass_object_o3 a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_object_o3 ;
-    net:coverNode :leaf_object_o3 ;
-    net:hasClassName "object" ;
+net:atomClass_satellite_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_satellite_s ;
+    net:hasClassName "satellite" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "object" ;
+    net:hasNaming "satellite" ;
     net:hasStructure "unknown" .
 
-:leaf_compose-01_c2 a :AMR_Leaf ;
-    :edge_c2_a2 :leaf_and_a2 ;
-    :edge_c2_o3 :leaf_object_o3 ;
-    :hasConcept :concept_compose-01 ;
-    :hasVariable :variable_c2 .
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
 
-:leaf_object_o3 a :AMR_Leaf ;
-    :hasConcept :concept_object ;
-    :hasVariable :variable_o3 .
-
-:leaf_planet_p3 a :AMR_Leaf ;
-    :edge_p3_t :leaf_terrestrial_t ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p3 .
-
-:leaf_terrestrial_t a :AMR_Leaf ;
-    :hasConcept :concept_terrestrial ;
-    :hasVariable :variable_t .
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
 
 net:Atom_Property_Net a owl:Class ;
     rdfs:subClassOf net:Property_Net .
 
-net:Deprecated_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_many_m3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "unknown" .
 
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
 
-ns11:FrameRole a ns3:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_m3 :leaf_many_m3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_a2 :leaf_and_a2 ;
+    :edge_o_s :leaf_satellite_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
 :AMR_AnnotationProperty a owl:AnnotationProperty .
 
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:leaf_belt_b a :AMR_Leaf ;
-    :edge_b_a :leaf_asteroid_a ;
-    :hasConcept :concept_belt ;
-    :hasVariable :variable_b .
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_6 :value_6 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
 
 net:Atom_Class_Net a owl:Class ;
     rdfs:subClassOf net:Class_Net .
@@ -1691,6 +1834,19 @@ net:Atom_Class_Net a owl:Class ;
 net:Class_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:leaf_satellite_s a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
     rdfs:subPropertyOf net:objectProperty .
@@ -1698,9 +1854,6 @@ net:objectValue a owl:AnnotationProperty ;
 :AMR_Variable a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-sys:Entity a owl:Class ;
-    rdfs:subClassOf sys:Out_Structure .
-
 :AMR_Leaf a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
index 64bbac5de78891d6496dd1b8b429749cca70ca40..256802f405e4b05f674d46e31b3f10e71d619d77 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -28,23 +28,29 @@ ns3:Role a rdfs:Class,
     ns3:hasSentence "Earth is a planet." ;
     ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns11:compose-01.ARG1 a ns11:FrameRole .
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
 
-ns11:compose-01.ARG2 a ns11:FrameRole .
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
 
-ns11:contain-01.ARG0 a ns11:FrameRole .
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
 
-ns11:contain-01.ARG1 a ns11:FrameRole .
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
 
-ns11:lie-07.ARG1 a ns11:FrameRole .
+ns11:include-91.ARG1 a ns11:FrameRole .
 
-ns11:lie-07.ARG2 a ns11:FrameRole .
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
 
 ns11:orbit-01.ARG0 a ns11:FrameRole .
 
-ns11:resemble-01.ARG1 a ns11:FrameRole .
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:possible-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG1 a ns11:FrameRole .
 
-ns11:resemble-01.ARG2 a ns11:FrameRole .
+ns11:term-01.ARG2 a ns11:FrameRole .
 
 ns2:domain a ns3:Role,
         owl:AnnotationProperty,
@@ -56,6 +62,10 @@ ns2:op1 a ns3:Role .
 
 ns2:op2 a ns3:Role .
 
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
 ns3:hasID a owl:AnnotationProperty .
 
 ns3:hasSentence a owl:AnnotationProperty .
@@ -73,82 +83,109 @@ ns3:root a owl:AnnotationProperty .
 :AMR_Root a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:edge_a2_m a :AMR_Edge ;
+:edge_a2_b a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_a2_r a :AMR_Edge ;
+:edge_a2_p a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_b2_o a :AMR_Edge ;
+:edge_a_m a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_b2_o2 a :AMR_Edge ;
-    :hasAmrRole :role_op2 ;
-    :hasRoleID "op2" .
+:edge_b_m3 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_b_a a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_h2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
 
-:edge_c2_a2 a :AMR_Edge ;
+:edge_h2_s2 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_c2_o3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
 
-:edge_c_b a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
 
-:edge_c_m2 a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_h_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
 
-:edge_c_o3 a :AMR_Edge ;
+:edge_ii2_b a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_l_b a :AMR_Edge ;
+:edge_ii2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_ii_p a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_l_b2 a :AMR_Edge ;
+:edge_ii_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_o2_p2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_m2_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_o_p a :AMR_Edge ;
+:edge_n_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_s a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_p2_name_Jupiter a :AMR_Edge ;
-    :hasAmrRole :role_name ;
-    :hasRoleID "name" .
-
-:edge_p3_t a :AMR_Edge ;
+:edge_p2_d a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
-:edge_p_name_Mars a :AMR_Edge ;
-    :hasAmrRole :role_name ;
-    :hasRoleID "name" .
-
-:edge_r2_c2 a :AMR_Edge ;
+:edge_p3_h a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_r2_p3 a :AMR_Edge ;
+:edge_p_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_a a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_t_m a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t_u a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
 :fromAmrLkFramerole a owl:AnnotationProperty ;
     rdfs:subPropertyOf :fromAmrLk .
 
@@ -221,42 +258,54 @@ ns3:root a owl:AnnotationProperty .
 :label a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_lie-07_l a :AMR_Leaf ;
-    :edge_l_b :leaf_belt_b ;
-    :edge_l_b2 :leaf_between_b2 ;
-    :hasConcept :concept_lie-07 ;
-    :hasVariable :variable_l .
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_b2 :leaf_body_b2 ;
+    :edge_h2_m4 :leaf_more_m4 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_p :leaf_planet_p ;
+    :edge_ii_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_include-91_ii2 a :AMR_Leaf ;
+    :edge_ii2_b :leaf_body_b ;
+    :edge_ii2_b2 :leaf_body_b2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s :leaf_satellite_s ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:leaf_possible-01_p3 a :AMR_Leaf ;
+    :edge_p3_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p3 .
 
-:leaf_resemble-01_r2 a :AMR_Leaf ;
-    :edge_r2_c2 :leaf_compose-01_c2 ;
-    :edge_r2_p3 :leaf_planet_p3 ;
-    :hasConcept :concept_resemble-01 ;
-    :hasVariable :variable_r2 .
+:leaf_term-01_t a :AMR_Leaf ;
+    :edge_t_a :leaf_after_a ;
+    :edge_t_m :leaf_moon_m ;
+    :edge_t_s :leaf_satellite_s ;
+    :edge_t_u :leaf_usual_u ;
+    :hasConcept :concept_term-01 ;
+    :hasVariable :variable_t .
 
 :phenomena_conjunction_or a owl:Class ;
     rdfs:subClassOf :phenomena_conjunction ;
     :hasConceptLink "or" ;
     :label "conjunction-OR" .
 
-:phenomena_degree a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena ;
-    :hasConceptLink "have-degree-91" ;
-    :label "degree" .
-
 :phenomena_modality_obligation a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "obligate-01" ;
     :label "obligation-modality" .
 
-:phenomena_modality_possible a owl:Class ;
-    rdfs:subClassOf :phenomena_modality ;
-    :hasConceptLink "allow-01",
-        "grant-01",
-        "likely-01",
-        "permit-01",
-        "possible-01" ;
-    :label "possible-modality" .
-
 :phenomena_modality_prohibition a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "prohibit-01" ;
@@ -303,14 +352,6 @@ ns3:root a owl:AnnotationProperty .
     :hasReification false ;
     :hasRelationName "quant" .
 
-:role_ARG3 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG3" .
-
-:role_ARG4 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG4" .
-
 :role_ARG5 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG5" .
@@ -352,6 +393,10 @@ ns3:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
 :role_op3 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op3" .
@@ -393,15 +438,11 @@ ns3:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:role_quant a owl:Class ;
-    rdfs:subClassOf :AMR_Specific_Role ;
-    :label "quant" .
-
-:root_WikiAbstract-SolarSystem-11 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> ;
-    :hasRootLeaf :leaf_contain-01_c ;
-    :hasSentenceID "WikiAbstract-SolarSystem-11" ;
-    :hasSentenceStatement "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." .
+:root_WikiAbstract-SolarSystem-17 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> ;
+    :hasRootLeaf :leaf_orbit-01_o ;
+    :hasSentenceID "WikiAbstract-SolarSystem-17" ;
+    :hasSentenceStatement "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -653,20 +694,42 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> a ns11:lie-07 ;
-    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
-    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> a ns11:resemble-01 ;
-    ns11:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
-    ns11:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> a ns11:possible-01 ;
+    ns11:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> a ns3:AMR ;
-    ns3:has-id "WikiAbstract-SolarSystem-11" ;
-    ns3:has-sentence "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." ;
-    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-17" ;
+    ns3:has-sentence "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> a ns11:term-01 ;
+    ns11:term-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:term-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
 <http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
@@ -675,224 +738,244 @@ net:verbClass a owl:AnnotationProperty ;
 ns3:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:NamedEntity a ns3:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-EntityType",
-        "AMR-Term" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
+:concept_after rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:after ;
+    :label "after" .
 
 :concept_and rdfs:subClassOf :AMR_Relation_Concept ;
     :fromAmrLk ns3:and ;
     :hasPhenomenaLink :phenomena_conjunction_and ;
     :label "and" .
 
-:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:asteroid ;
-    :label "asteroid" .
-
-:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:belt ;
-    :label "belt" .
-
-:concept_between rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:between ;
-    :label "between" .
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
 
-:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:compose-01 ;
-    :label "compose-01" .
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
 
-:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:contain-01 ;
-    :label "contain-01" .
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
 
-:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:lie-07 ;
-    :label "lie-07" .
+:concept_moon rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#moon> ;
+    :label "moon" .
 
-:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:metal ;
-    :label "metal" .
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
 
 :concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
     :fromAmrLk ns3:most ;
     :label "most" .
 
-:concept_object rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:object ;
-    :label "object" .
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
 
-:concept_resemble-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:resemble-01 ;
-    :label "resemble-01" .
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
 
-:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:rock ;
-    :label "rock" .
+:concept_term-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:term-01 ;
+    :label "term-01" .
 
-:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:terrestrial ;
-    :label "terrestrial" .
+:concept_usual rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:usual ;
+    :label "usual" .
+
+:leaf_after_a a :AMR_Leaf ;
+    :edge_a_m :leaf_moon_m ;
+    :hasConcept :concept_after ;
+    :hasVariable :variable_a .
 
 :leaf_and_a2 a :AMR_Leaf ;
-    :edge_a2_m :leaf_metal_m ;
-    :edge_a2_r :leaf_rock_r ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_p :leaf_planet_p ;
     :hasConcept :concept_and ;
     :hasVariable :variable_a2 .
 
-:leaf_asteroid_a a :AMR_Leaf ;
-    :hasConcept :concept_asteroid ;
-    :hasVariable :variable_a .
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
 
-:leaf_between_b2 a :AMR_Leaf ;
-    :edge_b2_o :leaf_orbit-01_o ;
-    :edge_b2_o2 :leaf_orbit-01_o2 ;
-    :hasConcept :concept_between ;
-    :hasVariable :variable_b2 .
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_most_m2 ;
+    :edge_h_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
 
-:leaf_compose-01_c2 a :AMR_Leaf ;
-    :edge_c2_a2 :leaf_and_a2 ;
-    :edge_c2_o3 :leaf_object_o3 ;
-    :hasConcept :concept_compose-01 ;
-    :hasVariable :variable_c2 .
-
-:leaf_contain-01_c a :AMR_Leaf ;
-    :edge_c_b :leaf_belt_b ;
-    :edge_c_m2 :leaf_most_m2 ;
-    :edge_c_o3 :leaf_object_o3 ;
-    :hasConcept :concept_contain-01 ;
-    :hasVariable :variable_c .
-
-:leaf_metal_m a :AMR_Leaf ;
-    :hasConcept :concept_metal ;
-    :hasVariable :variable_m .
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_many_m3 a :AMR_Leaf ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m3 .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
 
 :leaf_most_m2 a :AMR_Leaf ;
+    :edge_m2_quant_6 :value_6 ;
     :hasConcept :concept_most ;
     :hasVariable :variable_m2 .
 
 :leaf_orbit-01_o a :AMR_Leaf ;
-    :edge_o_p :leaf_planet_p ;
+    :edge_o_a2 :leaf_and_a2 ;
+    :edge_o_s :leaf_satellite_s ;
     :hasConcept :concept_orbit-01 ;
     :hasVariable :variable_o .
 
-:leaf_orbit-01_o2 a :AMR_Leaf ;
-    :edge_o2_p2 :leaf_planet_p2 ;
-    :hasConcept :concept_orbit-01 ;
-    :hasVariable :variable_o2 .
-
-:leaf_planet_p a :AMR_Leaf ;
-    :edge_p_name_Mars :value_Mars ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p .
-
-:leaf_planet_p2 a :AMR_Leaf ;
-    :edge_p2_name_Jupiter :value_Jupiter ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p2 .
-
-:leaf_planet_p3 a :AMR_Leaf ;
-    :edge_p3_t :leaf_terrestrial_t ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p3 .
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
 
-:leaf_rock_r a :AMR_Leaf ;
-    :hasConcept :concept_rock ;
-    :hasVariable :variable_r .
-
-:leaf_terrestrial_t a :AMR_Leaf ;
-    :hasConcept :concept_terrestrial ;
-    :hasVariable :variable_t .
+:leaf_usual_u a :AMR_Leaf ;
+    :hasConcept :concept_usual ;
+    :hasVariable :variable_u .
 
 :phenomena_conjunction_and a owl:Class ;
     rdfs:subClassOf :phenomena_conjunction ;
     :hasConceptLink "and" ;
     :label "conjunction-AND" .
 
-:value_Jupiter a :AMR_Value ;
-    rdfs:label "Jupiter" .
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
 
-:value_Mars a :AMR_Value ;
-    rdfs:label "Mars" .
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
 
 :variable_a a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
     :label "a" .
 
 :variable_a2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
     :label "a2" .
 
 :variable_b a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
     :label "b" .
 
 :variable_b2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
     :label "b2" .
 
-:variable_c a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> ;
-    :label "c" .
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    :label "d" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> ;
+    :label "h2" .
 
-:variable_c2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
-    :label "c2" .
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> ;
+    :label "ii" .
+
+:variable_ii2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> ;
+    :label "ii2" .
 
 :variable_l a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
     :label "l" .
 
 :variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
     :label "m" .
 
 :variable_m2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
     :label "m2" .
 
-:variable_o a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
-    :label "o" .
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    :label "m4" .
 
-:variable_o2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
-    :label "o2" .
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> ;
+    :label "n" .
 
-:variable_o3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
-    :label "o3" .
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> ;
+    :label "o" .
 
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
-    :label "p" ;
-    :name "Mars" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    :label "p" .
 
 :variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
-    :label "p2" ;
-    :name "Jupiter" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    :label "p2" .
 
 :variable_p3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> ;
     :label "p3" .
 
-:variable_r a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
-    :label "r" .
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    :label "s" .
 
-:variable_r2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> ;
-    :label "r2" .
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    :label "s2" .
 
 :variable_t a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> ;
     :label "t" .
 
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    :label "u" .
+
 sys:Degree a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
 
@@ -917,116 +1000,140 @@ net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> a ns2:asteroid ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> a ns3:after ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> a ns3:and ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> a ns3:between ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> a ns2:dwarf ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> a ns11:contain-01 ;
-    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
-    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> a ns11:compose-01 ;
-    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
-    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> a ns2:large ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> a ns2:metal ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> a ns3:most ;
+    ns2:quant "6" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> a ns3:most ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> a ns2:many ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> a ns11:orbit-01 ;
-    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> a ns3:more ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> a ns11:orbit-01 ;
-    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Mars" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> a ns2:small ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Jupiter" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> a ns2:usual ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> a <http://amr.isi.edu/entity-types#planet> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+<http://amr.isi.edu/entity-types#moon> a ns3:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> a ns2:rock ;
+ns11:natural-03 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> a ns2:terrestrial ;
+ns11:orbit-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:compose-01 a ns3:Frame ;
+ns11:possible-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:contain-01 a ns3:Frame ;
+ns11:term-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:lie-07 a ns3:Frame ;
+ns2:dwarf a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:resemble-01 a ns3:Frame ;
+ns2:large a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:asteroid a ns3:Concept ;
+ns2:many a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:belt a ns3:Concept ;
+ns2:satellite a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:metal a ns3:Concept ;
+ns2:small a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:object a ns3:Concept ;
+ns2:usual a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:rock a ns3:Concept ;
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:terrestrial a ns3:Concept ;
+ns3:after a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 ns3:and a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:between a ns3:Concept ;
+ns3:more a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 ns3:most a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:orbit-01 ;
-    :label "orbit-01" .
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:body ;
+    :label "body" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
 
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_belt_b a :AMR_Leaf ;
-    :edge_b_a :leaf_asteroid_a ;
-    :hasConcept :concept_belt ;
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_m3 :leaf_many_m3 ;
+    :hasConcept :concept_body ;
     :hasVariable :variable_b .
 
-:leaf_object_o3 a :AMR_Leaf ;
-    :hasConcept :concept_object ;
-    :hasVariable :variable_o3 .
+:leaf_body_b2 a :AMR_Leaf ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b2 .
+
+:leaf_moon_m a :AMR_Leaf ;
+    :hasConcept :concept_moon ;
+    :hasVariable :variable_m .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1035,17 +1142,26 @@ ns3:most a ns3:Concept ;
         "neither" ;
     :label "conjunction" .
 
-:role_name a owl:Class ;
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class ;
     rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
 
 :role_op1 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op1" .
 
-:role_op2 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op2" .
+:value_6 a :AMR_Value ;
+    rdfs:label "6" .
 
 sys:Out_ObjectProperty a owl:ObjectProperty .
 
@@ -1058,14 +1174,30 @@ net:Property_Net a owl:Class ;
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> a ns2:belt ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> a ns2:body ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> a ns2:object ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> a ns2:body ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:orbit-01 a ns3:Frame ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> a <http://amr.isi.edu/entity-types#moon> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:body a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1074,16 +1206,12 @@ ns11:orbit-01 a ns3:Frame ;
 :AMR_Phenomena a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
 :AMR_Specific_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:AMR_Value a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
-    :label "planet" .
-
 :fromAmrLk a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
@@ -1094,26 +1222,21 @@ ns11:orbit-01 a ns3:Frame ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:phenomena_modality a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena .
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_6 :value_6 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
 
-:role_ARG0 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG0" .
+:leaf_satellite_s a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s .
 
-:role_ARG2 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG2" .
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
 
-:role_mod a owl:Class ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :getDirectPropertyName "hasFeature"^^xsd:string ;
-    :getPropertyType rdfs:subClassOf,
-        owl:ObjectProperty ;
-    :label "mod" ;
-    :toReifyAsConcept "mod" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
 
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
@@ -1126,37 +1249,41 @@ net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "6" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> a ns2:satellite ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:role_ARG1 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG1" .
-
 net:typeProperty a owl:AnnotationProperty ;
     rdfs:label "type property" .
 
-ns3:Frame a ns3:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Frame" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_NonCore_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
 sys:Out_Structure a owl:Class ;
     rdfs:label "Output Ontology Structure" .
 
 net:netProperty a owl:AnnotationProperty ;
     rdfs:label "netProperty" .
 
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_ObjectProperty a owl:ObjectProperty ;
     rdfs:subPropertyOf owl:topObjectProperty .
 
@@ -1173,22 +1300,20 @@ rdf:Property a owl:Class .
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:AMR_Term_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
 
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
 
-ns11:FrameRole a ns3:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
@@ -1197,6 +1322,12 @@ net:Net a owl:Class ;
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
     rdfs:subPropertyOf net:objectProperty .
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
index 4f9c87fdea50b6aae6dc263d157a45a6a8770ec1..df2e04dbf23f515657df25550e6ef2417ede2674 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -28,23 +28,29 @@ ns3:Role a rdfs:Class,
     ns3:hasSentence "Earth is a planet." ;
     ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns11:compose-01.ARG1 a ns11:FrameRole .
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
 
-ns11:compose-01.ARG2 a ns11:FrameRole .
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
 
-ns11:contain-01.ARG0 a ns11:FrameRole .
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
 
-ns11:contain-01.ARG1 a ns11:FrameRole .
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
 
-ns11:lie-07.ARG1 a ns11:FrameRole .
+ns11:include-91.ARG1 a ns11:FrameRole .
 
-ns11:lie-07.ARG2 a ns11:FrameRole .
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
 
 ns11:orbit-01.ARG0 a ns11:FrameRole .
 
-ns11:resemble-01.ARG1 a ns11:FrameRole .
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:possible-01.ARG1 a ns11:FrameRole .
 
-ns11:resemble-01.ARG2 a ns11:FrameRole .
+ns11:term-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG2 a ns11:FrameRole .
 
 ns2:domain a ns3:Role,
         owl:AnnotationProperty,
@@ -56,6 +62,10 @@ ns2:op1 a ns3:Role .
 
 ns2:op2 a ns3:Role .
 
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
 ns3:hasID a owl:AnnotationProperty .
 
 ns3:hasSentence a owl:AnnotationProperty .
@@ -73,82 +83,109 @@ ns3:root a owl:AnnotationProperty .
 :AMR_Root a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:edge_a2_m a :AMR_Edge ;
+:edge_a2_b a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_a2_r a :AMR_Edge ;
+:edge_a2_p a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_b2_o a :AMR_Edge ;
+:edge_a_m a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_b2_o2 a :AMR_Edge ;
-    :hasAmrRole :role_op2 ;
-    :hasRoleID "op2" .
+:edge_b_m3 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_b_a a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_h2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
 
-:edge_c2_a2 a :AMR_Edge ;
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h2_s2 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_c2_o3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG1 ;
-    :hasRoleID "ARG1" .
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
 
-:edge_c_b a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
 
-:edge_c_m2 a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_h_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
 
-:edge_c_o3 a :AMR_Edge ;
+:edge_ii2_b a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_l_b a :AMR_Edge ;
+:edge_ii2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_ii_p a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_l_b2 a :AMR_Edge ;
+:edge_ii_p2 a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
-:edge_o2_p2 a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_m2_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_n_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
 
-:edge_o_p a :AMR_Edge ;
+:edge_o_s a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_p2_name_Jupiter a :AMR_Edge ;
-    :hasAmrRole :role_name ;
-    :hasRoleID "name" .
-
-:edge_p3_t a :AMR_Edge ;
+:edge_p2_d a :AMR_Edge ;
     :hasAmrRole :role_mod ;
     :hasRoleID "mod" .
 
-:edge_p_name_Mars a :AMR_Edge ;
-    :hasAmrRole :role_name ;
-    :hasRoleID "name" .
-
-:edge_r2_c2 a :AMR_Edge ;
+:edge_p3_h a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_r2_p3 a :AMR_Edge ;
+:edge_p_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_a a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_t_m a :AMR_Edge ;
     :hasAmrRole :role_ARG2 ;
     :hasRoleID "ARG2" .
 
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t_u a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
 :fromAmrLkFramerole a owl:AnnotationProperty ;
     rdfs:subPropertyOf :fromAmrLk .
 
@@ -226,25 +263,11 @@ ns3:root a owl:AnnotationProperty .
     :hasConceptLink "or" ;
     :label "conjunction-OR" .
 
-:phenomena_degree a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena ;
-    :hasConceptLink "have-degree-91" ;
-    :label "degree" .
-
 :phenomena_modality_obligation a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "obligate-01" ;
     :label "obligation-modality" .
 
-:phenomena_modality_possible a owl:Class ;
-    rdfs:subClassOf :phenomena_modality ;
-    :hasConceptLink "allow-01",
-        "grant-01",
-        "likely-01",
-        "permit-01",
-        "possible-01" ;
-    :label "possible-modality" .
-
 :phenomena_modality_prohibition a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "prohibit-01" ;
@@ -291,14 +314,6 @@ ns3:root a owl:AnnotationProperty .
     :hasReification false ;
     :hasRelationName "quant" .
 
-:role_ARG3 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG3" .
-
-:role_ARG4 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG4" .
-
 :role_ARG5 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG5" .
@@ -340,6 +355,10 @@ ns3:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
 :role_op3 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op3" .
@@ -381,15 +400,11 @@ ns3:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:role_quant a owl:Class ;
-    rdfs:subClassOf :AMR_Specific_Role ;
-    :label "quant" .
-
-:root_WikiAbstract-SolarSystem-11 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> ;
-    :hasRootLeaf :leaf_contain-01_c ;
-    :hasSentenceID "WikiAbstract-SolarSystem-11" ;
-    :hasSentenceStatement "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." .
+:root_WikiAbstract-SolarSystem-17 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> ;
+    :hasRootLeaf :leaf_orbit-01_o ;
+    :hasSentenceID "WikiAbstract-SolarSystem-17" ;
+    :hasSentenceStatement "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -479,57 +494,109 @@ net:atomOf a owl:AnnotationProperty ;
     rdfs:label "atom of" ;
     rdfs:subPropertyOf net:typeProperty .
 
-net:atomProperty_lie_l a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_belt_b,
-        net:compositeClass_asteroid-belt_b ;
-    :role_ARG2 net:atomClass_between_b2,
-        net:atomProperty_between_b2 ;
-    net:coverBaseNode :leaf_lie-07_l ;
-    net:coverNode :leaf_lie-07_l ;
-    net:hasNaming "lie" ;
-    net:hasPropertyName "lie" ;
-    net:hasPropertyName01 "lieing" ;
-    net:hasPropertyName10 "lie-by" ;
-    net:hasPropertyName12 "lie-of" ;
+net:atomProperty_after_a a net:Atom_Property_Net ;
+    :role_op1 net:atomClass_moon_m ;
+    net:coverBaseNode :leaf_after_a ;
+    net:coverNode :leaf_after_a ;
+    net:hasNaming "after" ;
+    net:hasPropertyName "after" ;
+    net:hasPropertyName01 "aftering" ;
+    net:hasPropertyName10 "after-by" ;
+    net:hasPropertyName12 "after-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_moon_m .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s .
+
+net:atomProperty_term_t a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s ;
+    :role_ARG2 net:atomClass_moon_m ;
+    :role_mod net:atomClass_usual_u ;
+    net:coverBaseNode :leaf_term-01_t ;
+    net:coverNode :leaf_term-01_t ;
+    net:hasNaming "term" ;
+    net:hasPropertyName "term" ;
+    net:hasPropertyName01 "terming" ;
+    net:hasPropertyName10 "term-by" ;
+    net:hasPropertyName12 "term-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_belt_b,
-        :leaf_between_b2 .
+    net:targetArgumentNode :leaf_moon_m,
+        :leaf_satellite_s,
+        :leaf_usual_u .
 
 net:atomType a owl:AnnotationProperty ;
     rdfs:label "atom type" ;
     rdfs:subPropertyOf net:objectType .
 
-net:compositeClass_asteroid-belt-contain-object_b a net:Composite_Class_Net ;
-    :role_mod net:atomClass_asteroid_a ;
-    net:composeFrom net:atomClass_object_o3,
-        net:atomProperty_contain_c,
-        net:compositeClass_asteroid-belt_b ;
-    net:coverBaseNode :leaf_belt_b ;
-    net:coverNode :leaf_asteroid_a,
-        :leaf_belt_b,
-        :leaf_contain-01_c,
-        :leaf_object_o3 ;
-    net:hasMotherClassNet net:compositeClass_asteroid-belt_b ;
-    net:hasNaming "asteroid-belt-contain-object" ;
-    net:hasRestriction net:restriction_contain-object_c ;
+net:compositeClass_body-include-body_b a net:Composite_Class_Net ;
+    :role_quant net:atomClass_many_m3 ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_body_b2,
+        net:atomProperty_include_ii2 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_body_b2,
+        :leaf_include-91_ii2 ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "body-include-body" ;
+    net:hasRestriction net:restriction_include-body_ii2 ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_planet-include-dwarf-planet_p a net:Composite_Class_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomProperty_include_ii,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_include-91_ii,
+        :leaf_planet_p,
+        :leaf_planet_p2 ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "planet-include-dwarf-planet" ;
+    net:hasRestriction net:restriction_include-dwarf-planet_ii ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_satellite-orbit-body_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_satellite_s,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_body_b,
+        :leaf_orbit-01_o,
+        :leaf_satellite_s ;
+    net:hasMotherClassNet net:atomClass_satellite_s ;
+    net:hasNaming "satellite-orbit-body" ;
+    net:hasRestriction net:restriction_orbit-body_o ;
     net:hasStructure "unknown" .
 
-net:compositeClass_compose-resemble-terrestrial-planet_c2 a net:Composite_Class_Net ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_ARG2 net:phenomena_conjunction-AND_a2 ;
-    net:composeFrom net:atomClass_compose_c2,
-        net:atomProperty_resemble_r2,
-        net:compositeClass_terrestrial-planet_p3 ;
-    net:coverBaseNode :leaf_compose-01_c2 ;
-    net:coverNode :leaf_compose-01_c2,
-        :leaf_planet_p3,
-        :leaf_resemble-01_r2,
-        :leaf_terrestrial_t ;
-    net:hasMotherClassNet net:atomClass_compose_c2 ;
-    net:hasNaming "compose-resemble-terrestrial-planet" ;
-    net:hasRestriction net:restriction_resemble-terrestrial-planet_r2 ;
+net:compositeClass_satellite-orbit-planet_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomClass_satellite_s,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_orbit-01_o,
+        :leaf_planet_p,
+        :leaf_satellite_s ;
+    net:hasMotherClassNet net:atomClass_satellite_s ;
+    net:hasNaming "satellite-orbit-planet" ;
+    net:hasRestriction net:restriction_orbit-planet_o ;
     net:hasStructure "unknown" .
 
 net:entityClass a owl:AnnotationProperty ;
@@ -627,24 +694,14 @@ net:has_target a owl:AnnotationProperty ;
     rdfs:label "has target" ;
     rdfs:subPropertyOf net:has_relation_value .
 
-net:individual_asteroid_a a net:Individual_Net ;
-    net:composeFrom net:atomClass_asteroid_a ;
-    net:coverBaseNode :leaf_asteroid_a ;
-    net:coverNode :leaf_asteroid_a ;
-    net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "asteroid" ;
-    net:hasMotherClassNet net:atomClass_asteroid_a ;
-    net:hasNaming "asteroid" ;
-    net:hasStructure "unknown" .
-
-net:individual_terrestrial_t a net:Individual_Net ;
-    net:composeFrom net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_terrestrial_t ;
-    net:coverNode :leaf_terrestrial_t ;
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
     net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "terrestrial" ;
-    net:hasMotherClassNet net:atomClass_terrestrial_t ;
-    net:hasNaming "terrestrial" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
     net:hasStructure "unknown" .
 
 net:inverse_direction a owl:NamedIndividual .
@@ -671,6 +728,28 @@ net:modCat2 a owl:AnnotationProperty ;
 
 net:normal_direction a owl:NamedIndividual .
 
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_body_b2 ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m4 ;
+    :role_ARG4 net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:phenomena_possible-modality_p3 a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:phenomena_degree_h ;
+    net:coverBaseNode :leaf_possible-01_p3 ;
+    net:coverNode :leaf_possible-01_p3 ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "unknown" .
+
 net:relationOf a owl:AnnotationProperty ;
     rdfs:label "relation of" ;
     rdfs:subPropertyOf net:typeProperty .
@@ -683,20 +762,42 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> a ns11:lie-07 ;
-    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
-    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> a ns11:resemble-01 ;
-    ns11:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
-    ns11:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> a ns11:possible-01 ;
+    ns11:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> a ns3:AMR ;
-    ns3:has-id "WikiAbstract-SolarSystem-11" ;
-    ns3:has-sentence "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." ;
-    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-17" ;
+    ns3:has-sentence "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> a ns11:term-01 ;
+    ns11:term-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:term-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
 <http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
@@ -705,143 +806,175 @@ net:verbClass a owl:AnnotationProperty ;
 ns3:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:NamedEntity a ns3:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-EntityType",
-        "AMR-Term" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
+:concept_after rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:after ;
+    :label "after" .
 
 :concept_and rdfs:subClassOf :AMR_Relation_Concept ;
     :fromAmrLk ns3:and ;
     :hasPhenomenaLink :phenomena_conjunction_and ;
     :label "and" .
 
-:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:asteroid ;
-    :label "asteroid" .
-
-:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:belt ;
-    :label "belt" .
-
-:concept_between rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:between ;
-    :label "between" .
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
 
-:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:compose-01 ;
-    :label "compose-01" .
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
 
-:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:contain-01 ;
-    :label "contain-01" .
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
 
-:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:lie-07 ;
-    :label "lie-07" .
+:concept_moon rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#moon> ;
+    :label "moon" .
 
-:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:metal ;
-    :label "metal" .
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
 
 :concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
     :fromAmrLk ns3:most ;
     :label "most" .
 
-:concept_object rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:object ;
-    :label "object" .
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_term-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:term-01 ;
+    :label "term-01" .
 
-:concept_resemble-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:resemble-01 ;
-    :label "resemble-01" .
+:concept_usual rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:usual ;
+    :label "usual" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
 
-:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:rock ;
-    :label "rock" .
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
 
-:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns2:terrestrial ;
-    :label "terrestrial" .
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
 
 :variable_a a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
     :label "a" .
 
 :variable_a2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
     :label "a2" .
 
 :variable_b a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
     :label "b" .
 
 :variable_b2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
     :label "b2" .
 
-:variable_c a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> ;
-    :label "c" .
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    :label "d" .
 
-:variable_c2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
-    :label "c2" .
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> ;
+    :label "ii" .
+
+:variable_ii2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> ;
+    :label "ii2" .
 
 :variable_l a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
     :label "l" .
 
 :variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
     :label "m" .
 
 :variable_m2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
     :label "m2" .
 
-:variable_o a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
-    :label "o" .
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    :label "m4" .
 
-:variable_o2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
-    :label "o2" .
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> ;
+    :label "n" .
 
-:variable_o3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
-    :label "o3" .
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> ;
+    :label "o" .
 
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
-    :label "p" ;
-    :name "Mars" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    :label "p" .
 
 :variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
-    :label "p2" ;
-    :name "Jupiter" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    :label "p2" .
 
 :variable_p3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> ;
     :label "p3" .
 
-:variable_r a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
-    :label "r" .
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    :label "s" .
 
-:variable_r2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> ;
-    :label "r2" .
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    :label "s2" .
 
 :variable_t a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> ;
     :label "t" .
 
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    :label "u" .
+
 sys:Degree a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
 
@@ -856,22 +989,51 @@ net:Axiom_Net a owl:Class ;
 net:Feature a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
-net:Phenomena_Net a owl:Class ;
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_between_b2 a net:Atom_Class_Net,
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
         net:Class_Net ;
-    :role_op1 net:atomProperty_orbit_o ;
-    :role_op2 net:atomProperty_orbit_o2 ;
-    net:composeFrom net:atomProperty_between_b2 ;
-    net:coverBaseNode :leaf_between_b2 ;
-    net:coverNode :leaf_between_b2 ;
-    net:hasClassName "between" ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "between" ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_usual_u a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_usual_u ;
+    net:coverNode :leaf_usual_u ;
+    net:hasClassName "usual" ;
+    net:hasNaming "usual" ;
     net:hasStructure "unknown" .
 
+net:atomProperty_more_m4 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
 net:atomProperty_most_m2 a net:Atom_Property_Net ;
+    :role_quant net:value_6_blankNode ;
     net:coverBaseNode :leaf_most_m2 ;
     net:coverNode :leaf_most_m2 ;
     net:hasNaming "most" ;
@@ -881,163 +1043,225 @@ net:atomProperty_most_m2 a net:Atom_Property_Net ;
     net:hasPropertyName12 "most-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" .
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_6 .
 
 net:has_value a owl:AnnotationProperty ;
     rdfs:subPropertyOf net:netProperty .
 
-net:individual_Jupiter_p2 a net:Individual_Net ;
-    :role_name net:value_Jupiter_blankNode ;
-    net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_planet_p2 ;
-    net:hasIndividualLabel "Jupiter" ;
-    net:hasMotherClassNet net:atomClass_planet_p2 ;
-    net:hasNaming "Jupiter" ;
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p ;
+    :role_op2 net:atomClass_body_b ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
     net:hasStructure "unknown" .
 
-net:individual_Mars_p a net:Individual_Net ;
-    :role_name net:value_Mars_blankNode ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p ;
-    net:hasIndividualLabel "Mars" ;
-    net:hasMotherClassNet net:atomClass_planet_p ;
-    net:hasNaming "Mars" ;
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
     net:hasStructure "unknown" .
 
-net:objectType a owl:AnnotationProperty ;
-    rdfs:label "object type" ;
-    rdfs:subPropertyOf net:objectProperty .
+net:restriction_include-body_ii2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_body_b2,
+        net:atomProperty_include_ii2 ;
+    net:coverBaseNode :leaf_include-91_ii2 ;
+    net:coverNode :leaf_body_b2,
+        :leaf_include-91_ii2 ;
+    net:hasNaming "include-body" ;
+    net:hasRestrictionNetValue net:atomClass_body_b2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii2 ;
+    net:hasStructure "unknown" .
+
+net:restriction_include-dwarf-planet_ii a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_include_ii,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_include-91_ii,
+        :leaf_planet_p2 ;
+    net:hasNaming "include-dwarf-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_dwarf-planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "unknown" .
 
-net:restriction_contain-object_c a net:Restriction_Net ;
-    net:composeFrom net:atomClass_object_o3,
-        net:atomProperty_contain_c ;
-    net:coverBaseNode :leaf_contain-01_c ;
-    net:coverNode :leaf_contain-01_c,
-        :leaf_object_o3 ;
-    net:hasNaming "contain-object" ;
-    net:hasRestrictionNetValue net:atomClass_object_o3 ;
-    net:hasRestrictionOnProperty net:atomProperty_contain_c ;
+net:restriction_orbit-body_o a net:Restriction_Net ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_body_b,
+        :leaf_orbit-01_o ;
+    net:hasNaming "orbit-body" ;
+    net:hasRestrictionNetValue net:atomClass_body_b ;
+    net:hasRestrictionOnProperty net:atomProperty_orbit_o ;
     net:hasStructure "unknown" .
 
-net:restriction_resemble-terrestrial-planet_r2 a net:Restriction_Net ;
-    net:composeFrom net:atomProperty_resemble_r2,
-        net:compositeClass_terrestrial-planet_p3 ;
-    net:coverBaseNode :leaf_resemble-01_r2 ;
-    net:coverNode :leaf_planet_p3,
-        :leaf_resemble-01_r2,
-        :leaf_terrestrial_t ;
-    net:hasNaming "resemble-terrestrial-planet" ;
-    net:hasRestrictionNetValue net:compositeClass_terrestrial-planet_p3 ;
-    net:hasRestrictionOnProperty net:atomProperty_resemble_r2 ;
+net:restriction_orbit-planet_o a net:Restriction_Net ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o,
+        :leaf_planet_p ;
+    net:hasNaming "orbit-planet" ;
+    net:hasRestrictionNetValue net:atomClass_planet_p ;
+    net:hasRestrictionOnProperty net:atomProperty_orbit_o ;
     net:hasStructure "unknown" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> a ns2:asteroid ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> a ns3:after ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> a ns3:and ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> a ns3:between ;
-    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
-    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> a ns2:dwarf ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> a ns11:contain-01 ;
-    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
-    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> a ns11:compose-01 ;
-    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
-    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> a ns2:large ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> a ns2:metal ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> a ns3:most ;
+    ns2:quant "6" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> a ns3:most ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> a ns2:many ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> a ns11:orbit-01 ;
-    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> a ns3:more ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> a ns11:orbit-01 ;
-    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Mars" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> a ns2:small ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> a <http://amr.isi.edu/entity-types#planet> ;
-    rdfs:label "Jupiter" ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> a ns2:usual ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> a <http://amr.isi.edu/entity-types#planet> ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+<http://amr.isi.edu/entity-types#moon> a ns3:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> a ns2:rock ;
+ns11:natural-03 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> a ns2:terrestrial ;
+ns11:orbit-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:compose-01 a ns3:Frame ;
+ns11:possible-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:contain-01 a ns3:Frame ;
+ns11:term-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:lie-07 a ns3:Frame ;
+ns2:dwarf a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:resemble-01 a ns3:Frame ;
+ns2:large a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:asteroid a ns3:Concept ;
+ns2:many a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:belt a ns3:Concept ;
+ns2:satellite a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:metal a ns3:Concept ;
+ns2:small a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:object a ns3:Concept ;
+ns2:usual a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:rock a ns3:Concept ;
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns2:terrestrial a ns3:Concept ;
+ns3:after a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 ns3:and a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:between a ns3:Concept ;
+ns3:more a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 ns3:most a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns11:orbit-01 ;
-    :label "orbit-01" .
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:body ;
+    :label "body" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
 
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_lie-07_l a :AMR_Leaf ;
-    :edge_l_b :leaf_belt_b ;
-    :edge_l_b2 :leaf_between_b2 ;
-    :hasConcept :concept_lie-07 ;
-    :hasVariable :variable_l .
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_b2 :leaf_body_b2 ;
+    :edge_h2_m4 :leaf_more_m4 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s :leaf_satellite_s ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:leaf_possible-01_p3 a :AMR_Leaf ;
+    :edge_p3_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p3 .
+
+:leaf_term-01_t a :AMR_Leaf ;
+    :edge_t_a :leaf_after_a ;
+    :edge_t_m :leaf_moon_m ;
+    :edge_t_s :leaf_satellite_s ;
+    :edge_t_u :leaf_usual_u ;
+    :hasConcept :concept_term-01 ;
+    :hasVariable :variable_t .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1051,167 +1275,84 @@ ns3:most a ns3:Concept ;
     :hasConceptLink "and" ;
     :label "conjunction-AND" .
 
-:role_name a owl:Class,
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
 
 :role_op1 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Op_Role ;
     :label "op1" .
 
-:role_op2 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op2" .
-
-:value_Jupiter a :AMR_Value ;
-    rdfs:label "Jupiter" .
-
-:value_Mars a :AMR_Value ;
-    rdfs:label "Mars" .
-
 sys:Out_ObjectProperty a owl:ObjectProperty .
 
 net:Property_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Restriction_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
-net:Value_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+net:atomClass_many_m3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_many_m3 ;
+    net:coverNode :leaf_many_m3 ;
+    net:hasClassName "many" ;
+    net:hasNaming "many" ;
+    net:hasStructure "unknown" .
 
-net:atomClass_metal_m a net:Atom_Class_Net,
+net:atomClass_moon_m a net:Atom_Class_Net,
         net:Class_Net ;
-    net:coverBaseNode :leaf_metal_m ;
-    net:coverNode :leaf_metal_m ;
-    net:hasClassName "metal" ;
+    net:coverBaseNode :leaf_moon_m ;
+    net:coverNode :leaf_moon_m ;
+    net:hasClassName "moon" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "metal" ;
+    net:hasNaming "moon" ;
     net:hasStructure "unknown" .
 
-net:atomClass_planet_p a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Mars_blankNode ;
-    net:coverBaseNode :leaf_planet_p ;
-    net:coverNode :leaf_planet_p ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
 
-net:atomClass_planet_p2 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_Jupiter_blankNode ;
-    net:coverBaseNode :leaf_planet_p2 ;
-    net:coverNode :leaf_planet_p2 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> a ns2:body ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-net:atomClass_rock_r a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_rock_r ;
-    net:coverNode :leaf_rock_r ;
-    net:hasClassName "rock" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "rock" ;
-    net:hasStructure "unknown" .
-
-net:atomProperty_between_b2 a net:Atom_Property_Net,
-        net:Deprecated_Net ;
-    :role_op1 net:atomProperty_orbit_o ;
-    :role_op2 net:atomProperty_orbit_o2 ;
-    net:coverBaseNode :leaf_between_b2 ;
-    net:coverNode :leaf_between_b2 ;
-    net:hasNaming "between" ;
-    net:hasPropertyName "between" ;
-    net:hasPropertyName01 "betweening" ;
-    net:hasPropertyName10 "between-by" ;
-    net:hasPropertyName12 "between-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_orbit-01_o,
-        :leaf_orbit-01_o2 .
-
-net:atomProperty_compose_c2 a net:Atom_Property_Net,
-        net:Deprecated_Net ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_ARG2 net:atomClass_metal_m,
-        net:atomClass_rock_r,
-        net:phenomena_conjunction-AND_a2 ;
-    net:coverBaseNode :leaf_compose-01_c2 ;
-    net:coverNode :leaf_compose-01_c2 ;
-    net:hasNaming "compose" ;
-    net:hasPropertyName "compose" ;
-    net:hasPropertyName01 "composeing" ;
-    net:hasPropertyName10 "compose-by" ;
-    net:hasPropertyName12 "compose-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_and_a2,
-        :leaf_object_o3 .
-
-net:atomProperty_orbit_o a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_planet_p,
-        net:individual_Mars_p ;
-    net:coverBaseNode :leaf_orbit-01_o ;
-    net:coverNode :leaf_orbit-01_o ;
-    net:hasNaming "orbit" ;
-    net:hasPropertyName "orbit" ;
-    net:hasPropertyName01 "orbiting" ;
-    net:hasPropertyName10 "orbit-by" ;
-    net:hasPropertyName12 "orbit-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_planet_p .
-
-net:atomProperty_orbit_o2 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_planet_p2,
-        net:individual_Jupiter_p2 ;
-    net:coverBaseNode :leaf_orbit-01_o2 ;
-    net:coverNode :leaf_orbit-01_o2 ;
-    net:hasNaming "orbit" ;
-    net:hasPropertyName "orbit" ;
-    net:hasPropertyName01 "orbiting" ;
-    net:hasPropertyName10 "orbit-by" ;
-    net:hasPropertyName12 "orbit-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_planet_p2 .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> a ns2:body ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-net:objectProperty a owl:AnnotationProperty ;
-    rdfs:label "object attribute" .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> a <http://amr.isi.edu/entity-types#moon> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-net:value_Jupiter_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Jupiter ;
-    net:hasNaming "Jupiter" ;
-    net:hasStructure "unknown" ;
-    net:hasValueLabel "Jupiter" .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-net:value_Mars_blankNode a net:Value_Net ;
-    net:coverAmrValue :value_Mars ;
-    net:hasNaming "Mars" ;
-    net:hasStructure "unknown" ;
-    net:hasValueLabel "Mars" .
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> a ns2:belt ;
-    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+ns11:have-degree-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> a ns2:object ;
+ns11:include-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns11:orbit-01 a ns3:Frame ;
+ns2:body a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1220,16 +1361,12 @@ ns11:orbit-01 a ns3:Frame ;
 :AMR_Phenomena a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
 :AMR_Specific_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:AMR_Value a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
-    :label "planet" .
-
 :fromAmrLk a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
@@ -1240,37 +1377,51 @@ ns11:orbit-01 a ns3:Frame ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_metal_m a :AMR_Leaf ;
-    :hasConcept :concept_metal ;
-    :hasVariable :variable_m .
+:leaf_after_a a :AMR_Leaf ;
+    :edge_a_m :leaf_moon_m ;
+    :hasConcept :concept_after ;
+    :hasVariable :variable_a .
 
-:leaf_rock_r a :AMR_Leaf ;
-    :hasConcept :concept_rock ;
-    :hasVariable :variable_r .
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_most_m2 ;
+    :edge_h_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
 
-:phenomena_modality a owl:Class ;
-    rdfs:subClassOf :AMR_Phenomena .
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
 
-:role_ARG0 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG0" .
+:leaf_many_m3 a :AMR_Leaf ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m3 .
 
-:role_ARG2 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG2" .
+:leaf_more_m4 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
 
-:role_mod a owl:Class,
+:leaf_most_m2 a :AMR_Leaf ;
+    :edge_m2_quant_6 :value_6 ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_quant a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :getDirectPropertyName "hasFeature"^^xsd:string ;
-    :getPropertyType rdfs:subClassOf,
-        owl:ObjectProperty ;
-    :label "mod" ;
-    :toReifyAsConcept "mod" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
 
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
@@ -1279,227 +1430,191 @@ net:Net_Structure a owl:Class ;
     rdfs:label "Semantic Net Structure" ;
     rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
 
-net:atomClass_compose_c2 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_ARG2 net:phenomena_conjunction-AND_a2 ;
-    net:composeFrom net:atomProperty_compose_c2 ;
-    net:coverBaseNode :leaf_compose-01_c2 ;
-    net:coverNode :leaf_compose-01_c2 ;
-    net:hasClassName "compose" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "compose" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_planet_p3 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_planet_p3 ;
-    net:coverNode :leaf_planet_p3 ;
-    net:hasClassName "planet" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "planet" ;
-    net:hasStructure "unknown" .
-
-net:atomProperty_contain_c a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_belt_b,
-        net:compositeClass_asteroid-belt_b ;
-    :role_ARG1 net:atomClass_object_o3 ;
-    :role_mod net:atomProperty_most_m2 ;
-    net:coverBaseNode :leaf_contain-01_c ;
-    net:coverNode :leaf_contain-01_c ;
-    net:hasNaming "contain" ;
-    net:hasPropertyName "contain" ;
-    net:hasPropertyName01 "containing" ;
-    net:hasPropertyName10 "contain-by" ;
-    net:hasPropertyName12 "contain-of" ;
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_planet_p ;
+    :role_ARG2 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_belt_b,
-        :leaf_most_m2,
-        :leaf_object_o3 .
-
-net:atomProperty_resemble_r2 a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_compose_c2,
-        net:atomProperty_compose_c2 ;
-    :role_ARG2 net:atomClass_planet_p3,
-        net:compositeClass_terrestrial-planet_p3 ;
-    net:coverBaseNode :leaf_resemble-01_r2 ;
-    net:coverNode :leaf_resemble-01_r2 ;
-    net:hasNaming "resemble" ;
-    net:hasPropertyName "resemble" ;
-    net:hasPropertyName01 "resembleing" ;
-    net:hasPropertyName10 "resemble-by" ;
-    net:hasPropertyName12 "resemble-of" ;
+    net:targetArgumentNode :leaf_planet_p,
+        :leaf_planet_p2 .
+
+net:atomProperty_include_ii2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_body_b ;
+    :role_ARG2 net:atomClass_body_b2 ;
+    net:coverBaseNode :leaf_include-91_ii2 ;
+    net:coverNode :leaf_include-91_ii2 ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_compose-01_c2,
-        :leaf_planet_p3 .
+    net:targetArgumentNode :leaf_body_b,
+        :leaf_body_b2 .
 
 net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
-    :role_op1 net:atomClass_rock_r ;
-    :role_op2 net:atomClass_metal_m ;
-    net:coverBaseNode :leaf_and_a2 ;
-    net:coverNode :leaf_and_a2 ;
-    net:hasNaming "conjunction-AND" ;
-    net:hasPhenomenaRef "and" ;
-    net:hasPhenomenaType :phenomena_conjunction_and ;
-    net:hasStructure "unknown" .
+net:value_6_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_6 ;
+    net:hasNaming "6" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "6" .
 
-<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "6" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> a ns2:satellite ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
 :leaf_and_a2 a :AMR_Leaf ;
-    :edge_a2_m :leaf_metal_m ;
-    :edge_a2_r :leaf_rock_r ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_p :leaf_planet_p ;
     :hasConcept :concept_and ;
     :hasVariable :variable_a2 .
 
-:leaf_most_m2 a :AMR_Leaf ;
-    :hasConcept :concept_most ;
-    :hasVariable :variable_m2 .
+:leaf_usual_u a :AMR_Leaf ;
+    :hasConcept :concept_usual ;
+    :hasVariable :variable_u .
 
-:leaf_orbit-01_o a :AMR_Leaf ;
-    :edge_o_p :leaf_planet_p ;
-    :hasConcept :concept_orbit-01 ;
-    :hasVariable :variable_o .
+:value_6 a :AMR_Value ;
+    rdfs:label "6" .
 
-:leaf_orbit-01_o2 a :AMR_Leaf ;
-    :edge_o2_p2 :leaf_planet_p2 ;
-    :hasConcept :concept_orbit-01 ;
-    :hasVariable :variable_o2 .
-
-:role_ARG1 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG1" .
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:Composite_Class_Net a owl:Class ;
-    rdfs:subClassOf net:Class_Net .
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:Individual_Net a owl:Class ;
+net:Restriction_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_belt_b a net:Atom_Class_Net,
+net:atomClass_planet_p2 a net:Atom_Class_Net,
         net:Class_Net,
         net:Deprecated_Net ;
-    :role_mod net:atomClass_asteroid_a ;
-    net:coverBaseNode :leaf_belt_b ;
-    net:coverNode :leaf_belt_b ;
-    net:hasClassName "belt" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "belt" ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_asteroid-belt_b a net:Class_Net,
-        net:Composite_Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_asteroid_a ;
-    net:composeFrom net:atomClass_asteroid_a,
-        net:atomClass_belt_b ;
-    net:coverBaseNode :leaf_belt_b ;
-    net:coverNode :leaf_asteroid_a,
-        :leaf_belt_b ;
-    net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_belt_b ;
-    net:hasNaming "asteroid-belt" ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_terrestrial-planet_p3 a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_terrestrial_t ;
-    net:composeFrom net:atomClass_planet_p3,
-        net:atomClass_terrestrial_t ;
-    net:coverBaseNode :leaf_planet_p3 ;
-    net:coverNode :leaf_planet_p3,
-        :leaf_terrestrial_t ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
     net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_planet_p3 ;
-    net:hasNaming "terrestrial-planet" ;
+    net:hasNaming "planet" ;
     net:hasStructure "unknown" .
 
 net:typeProperty a owl:AnnotationProperty ;
     rdfs:label "type property" .
 
-ns3:Frame a ns3:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Frame" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_NonCore_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-:leaf_resemble-01_r2 a :AMR_Leaf ;
-    :edge_r2_c2 :leaf_compose-01_c2 ;
-    :edge_r2_p3 :leaf_planet_p3 ;
-    :hasConcept :concept_resemble-01 ;
-    :hasVariable :variable_r2 .
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_p :leaf_planet_p ;
+    :edge_ii_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_include-91_ii2 a :AMR_Leaf ;
+    :edge_ii2_b :leaf_body_b ;
+    :edge_ii2_b2 :leaf_body_b2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii2 .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
 
 sys:Out_Structure a owl:Class ;
     rdfs:label "Output Ontology Structure" .
 
-net:atomClass_terrestrial_t a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_terrestrial_t ;
-    net:coverNode :leaf_terrestrial_t ;
-    net:hasClassName "terrestrial" ;
-    net:hasNaming "terrestrial" ;
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:atomClass_body_b2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_body_b2 ;
+    net:coverNode :leaf_body_b2 ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_dwarf-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
     net:hasStructure "unknown" .
 
 net:netProperty a owl:AnnotationProperty ;
     rdfs:label "netProperty" .
 
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_ObjectProperty a owl:ObjectProperty ;
     rdfs:subPropertyOf owl:topObjectProperty .
 
 :AMR_Structure a owl:Class .
 
-:leaf_between_b2 a :AMR_Leaf ;
-    :edge_b2_o :leaf_orbit-01_o ;
-    :edge_b2_o2 :leaf_orbit-01_o2 ;
-    :hasConcept :concept_between ;
-    :hasVariable :variable_b2 .
-
-:leaf_contain-01_c a :AMR_Leaf ;
-    :edge_c_b :leaf_belt_b ;
-    :edge_c_m2 :leaf_most_m2 ;
-    :edge_c_o3 :leaf_object_o3 ;
-    :hasConcept :concept_contain-01 ;
-    :hasVariable :variable_c .
-
-:leaf_planet_p a :AMR_Leaf ;
-    :edge_p_name_Mars :value_Mars ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p .
-
-:leaf_planet_p2 a :AMR_Leaf ;
-    :edge_p2_name_Jupiter :value_Jupiter ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p2 .
+:leaf_moon_m a :AMR_Leaf ;
+    :hasConcept :concept_moon ;
+    :hasVariable :variable_m .
 
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
-net:atomClass_asteroid_a a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_asteroid_a ;
-    net:coverNode :leaf_asteroid_a ;
-    net:hasClassName "asteroid" ;
-    net:hasNaming "asteroid" ;
-    net:hasStructure "unknown" .
+net:atomProperty_orbit_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_satellite_s ;
+    :role_ARG1 net:atomClass_body_b,
+        net:atomClass_planet_p,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_satellite_s .
 
 rdf:Property a owl:Class .
 
@@ -1509,85 +1624,115 @@ rdf:Property a owl:Class .
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:AMR_Term_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
-:leaf_asteroid_a a :AMR_Leaf ;
-    :hasConcept :concept_asteroid ;
-    :hasVariable :variable_a .
-
-net:Relation a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
+:leaf_body_b2 a :AMR_Leaf ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b2 .
 
-net:atomClass_object_o3 a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_object_o3 ;
-    net:coverNode :leaf_object_o3 ;
-    net:hasClassName "object" ;
+net:atomClass_satellite_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_satellite_s ;
+    net:hasClassName "satellite" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "object" ;
+    net:hasNaming "satellite" ;
     net:hasStructure "unknown" .
 
-:leaf_compose-01_c2 a :AMR_Leaf ;
-    :edge_c2_a2 :leaf_and_a2 ;
-    :edge_c2_o3 :leaf_object_o3 ;
-    :hasConcept :concept_compose-01 ;
-    :hasVariable :variable_c2 .
-
-:leaf_object_o3 a :AMR_Leaf ;
-    :hasConcept :concept_object ;
-    :hasVariable :variable_o3 .
-
-:leaf_planet_p3 a :AMR_Leaf ;
-    :edge_p3_t :leaf_terrestrial_t ;
-    :hasConcept :concept_planet ;
-    :hasVariable :variable_p3 .
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
 
-:leaf_terrestrial_t a :AMR_Leaf ;
-    :hasConcept :concept_terrestrial ;
-    :hasVariable :variable_t .
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
 
 net:Atom_Property_Net a owl:Class ;
     rdfs:subClassOf net:Property_Net .
 
-net:Deprecated_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_many_m3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "unknown" .
 
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
 
-ns11:FrameRole a ns3:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_m3 :leaf_many_m3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_a2 :leaf_and_a2 ;
+    :edge_o_s :leaf_satellite_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
 :AMR_AnnotationProperty a owl:AnnotationProperty .
 
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:leaf_belt_b a :AMR_Leaf ;
-    :edge_b_a :leaf_asteroid_a ;
-    :hasConcept :concept_belt ;
-    :hasVariable :variable_b .
-
-net:Atom_Class_Net a owl:Class ;
-    rdfs:subClassOf net:Class_Net .
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_6 :value_6 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
 
 sys:Entity a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
 
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
 net:Class_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:leaf_satellite_s a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s .
+
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
     rdfs:subPropertyOf net:objectProperty .
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
index 630e8327fff45cc881cd889da22780c108bf1d8e..3acd5b463a2e96c2c2decf65a7c71563b67c24d7 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -2,43 +2,36 @@
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 
-<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Jupiter" ;
-    ns1:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#Mars> a owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#planet> ;
-    rdfs:label "Mars" ;
+<https://tenet.tetras-libre.fr/extract-result#after> a owl:ObjectProperty ;
+    rdfs:label "after" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#asteroid-belt-contain-object> a owl:Class ;
+<https://tenet.tetras-libre.fr/extract-result#body-include-body> a owl:Class ;
     rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#contain> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
-        <https://tenet.tetras-libre.fr/extract-result#asteroid-belt> ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#body> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#between> a owl:Class ;
-    rdfs:label "between" ;
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#compose-resemble-terrestrial-planet> a owl:Class ;
-    rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#resemble> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> ],
-        <https://tenet.tetras-libre.fr/extract-result#compose> ;
+<https://tenet.tetras-libre.fr/extract-result#many> a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
-    rdfs:label "lie" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#moon> a owl:Class ;
+    rdfs:label "moon" ;
+    rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#metal> a owl:Class ;
-    rdfs:label "metal" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
 <https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
@@ -46,61 +39,76 @@
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
-    rdfs:label "orbit" ;
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#rock> a owl:Class ;
-    rdfs:label "rock" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#planet-include-dwarf-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#dwarf-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#asteroid> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
-    rdfs:label "asteroid" ;
-    rdfs:subClassOf ns1:Undetermined_Thing ;
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-body> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#asteroid-belt> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#belt> ;
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#belt> a owl:Class ;
-    rdfs:label "belt" ;
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#compose> a owl:Class ;
-    rdfs:label "compose" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#term> a owl:ObjectProperty ;
+    rdfs:label "term" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
-    rdfs:label "contain" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#usual> a owl:Class ;
+    rdfs:label "usual" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
-    rdfs:label "object" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#resemble> a owl:ObjectProperty ;
-    rdfs:label "resemble" ;
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#terrestrial> ;
-    rdfs:label "terrestrial" ;
-    rdfs:subClassOf ns1:Undetermined_Thing ;
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
 <https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..0ac91f07dd7a3be7f3d6cc07e6ab374d4703972f
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1427 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:exist-01.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG2 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG3 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG4 a ns21:FrameRole .
+
+ns21:long-03.ARG1 a ns21:FrameRole .
+
+ns21:possible-01.ARG1 a ns21:FrameRole .
+
+ns21:source-02.ARG0 a ns21:FrameRole .
+
+ns21:source-02.ARG1 a ns21:FrameRole .
+
+ns21:think-01.ARG1 a ns21:FrameRole .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:location a ns1:Role .
+
+ns3:mod a ns1:Role .
+
+ns3:quant a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_c2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_name_Oortcloud a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_e_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_e_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_d a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_l_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_s_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t2_r a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-21 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> ;
+    :hasRootLeaf :leaf_possible-01_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-21" ;
+    :hasSentenceStatement "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Oortcloud> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    rdfs:label "Oortcloud" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#also> a owl:Class ;
+    rdfs:label "also" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#distant> a owl:ObjectProperty ;
+    rdfs:label "distant" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#exist> a owl:ObjectProperty ;
+    rdfs:label "exist" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#heliosphere> a owl:Class ;
+    rdfs:label "heliosphere" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#long> a owl:ObjectProperty ;
+    rdfs:label "long" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#period-comet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#comet> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#roughly> a owl:Class ;
+    rdfs:label "roughly" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#source> a owl:Class ;
+    rdfs:label "source" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#think> a owl:ObjectProperty ;
+    rdfs:label "think" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#times> a owl:Class ;
+    rdfs:label "times" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_long_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_long-03_l ;
+    net:coverNode :leaf_long-03_l ;
+    net:hasNaming "long" ;
+    net:hasPropertyName "long" ;
+    net:hasPropertyName01 "longing" ;
+    net:hasPropertyName10 "long-by" ;
+    net:hasPropertyName12 "long-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_period_p2 .
+
+net:atomProperty_think_t a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_source_s,
+        net:atomProperty_source_s ;
+    net:coverBaseNode :leaf_think-01_t ;
+    net:coverNode :leaf_think-01_t ;
+    net:hasNaming "think" ;
+    net:hasPropertyName "think" ;
+    net:hasPropertyName01 "thinking" ;
+    net:hasPropertyName10 "think-by" ;
+    net:hasPropertyName12 "think-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_source-02_s .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_period_p2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_period_p2 ;
+    net:coverNode :leaf_period_p2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "period" ;
+    net:hasMotherClassNet net:atomClass_period_p2 ;
+    net:hasNaming "period" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG2 net:atomProperty_distant_d ;
+    :role_ARG3 net:atomClass_times_t2 ;
+    :role_ARG4 net:atomClass_heliosphere_h2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:phenomena_possible-modality_p a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:atomProperty_exist_e ;
+    net:coverBaseNode :leaf_possible-01_p ;
+    net:coverNode :leaf_possible-01_p ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> a ns21:have-degree-91 ;
+    ns21:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns21:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    ns21:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> a ns21:long-03 ;
+    ns21:long-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-21" ;
+    ns1:has-sentence "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> a ns21:think-01 ;
+    ns21:think-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_also rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:also ;
+    :label "also" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:cloud ;
+    :label "cloud" .
+
+:concept_comet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:comet ;
+    :label "comet" .
+
+:concept_distant-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:distant-02 ;
+    :label "distant-02" .
+
+:concept_exist-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:exist-01 ;
+    :label "exist-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_heliosphere rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:heliosphere ;
+    :label "heliosphere" .
+
+:concept_long-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:long-03 ;
+    :label "long-03" .
+
+:concept_period rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:period ;
+    :label "period" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_roughly rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:roughly ;
+    :label "roughly" .
+
+:concept_source-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:source-02 ;
+    :label "source-02" .
+
+:concept_think-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:think-01 ;
+    :label "think-01" .
+
+:concept_times rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:times ;
+    :label "times" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    :label "a" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    :label "c" ;
+    :name "Oort cloud" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> ;
+    :label "l" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    :label "t2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#comet> a owl:Class ;
+    rdfs:label "comet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#period> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#period> ;
+    rdfs:label "period" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_also_a a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_also_a ;
+    net:coverNode :leaf_also_a ;
+    net:hasClassName "also" ;
+    net:hasNaming "also" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_heliosphere_h2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_heliosphere_h2 ;
+    net:coverNode :leaf_heliosphere_h2 ;
+    net:hasClassName "heliosphere" ;
+    net:hasNaming "heliosphere" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_roughly_r a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_roughly_r ;
+    net:coverNode :leaf_roughly_r ;
+    net:hasClassName "roughly" ;
+    net:hasNaming "roughly" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_source_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG1 net:atomClass_comet_c2,
+        net:compositeClass_period-comet_c2 ;
+    net:composeFrom net:atomProperty_source_s ;
+    net:coverBaseNode :leaf_source-02_s ;
+    net:coverNode :leaf_source-02_s ;
+    net:hasClassName "source" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "source" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_times_t2 a net:Atom_Class_Net ;
+    :role_quant net:atomClass_roughly_r ;
+    net:coverBaseNode :leaf_times_t2 ;
+    net:coverNode :leaf_times_t2 ;
+    net:hasClassName "times" ;
+    net:hasNaming "times" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_distant_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_distant-02_d ;
+    net:coverNode :leaf_distant-02_d ;
+    net:hasNaming "distant" ;
+    net:hasPropertyName "distant" ;
+    net:hasPropertyName01 "distanting" ;
+    net:hasPropertyName10 "distant-by" ;
+    net:hasPropertyName12 "distant-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_exist_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_mod net:atomClass_also_a ;
+    net:coverBaseNode :leaf_exist-01_e ;
+    net:coverNode :leaf_exist-01_e ;
+    net:hasNaming "exist" ;
+    net:hasPropertyName "exist" ;
+    net:hasPropertyName01 "existing" ;
+    net:hasPropertyName10 "exist-by" ;
+    net:hasPropertyName12 "exist-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_also_a,
+        :leaf_cloud_c .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> a ns3:also ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> a ns3:comet ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> a ns21:exist-01 ;
+    ns21:exist-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns3:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> a ns3:heliosphere ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> a ns21:possible-01 ;
+    ns21:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> a ns3:roughly ;
+    ns3:op1 "1000" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> a ns21:source-02 ;
+    ns21:source-02.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:source-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> a ns3:times ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:distant-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:exist-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:long-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:possible-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:source-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:think-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:also a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:cloud a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:comet a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:heliosphere a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:period a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:roughly a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:times a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_c :leaf_cloud_c ;
+    :edge_h_d :leaf_distant-02_d ;
+    :edge_h_h2 :leaf_heliosphere_h2 ;
+    :edge_h_t2 :leaf_times_t2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_long-03_l a :AMR_Leaf ;
+    :edge_l_p2 :leaf_period_p2 ;
+    :hasConcept :concept_long-03 ;
+    :hasVariable :variable_l .
+
+:leaf_think-01_t a :AMR_Leaf ;
+    :edge_t_s :leaf_source-02_s ;
+    :hasConcept :concept_think-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_Oortcloud a :AMR_Value ;
+    rdfs:label "Oortcloud" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_source_s a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG1 net:atomClass_comet_c2,
+        net:compositeClass_period-comet_c2 ;
+    net:coverBaseNode :leaf_source-02_s ;
+    net:coverNode :leaf_source-02_s ;
+    net:hasNaming "source" ;
+    net:hasPropertyName "source" ;
+    net:hasPropertyName01 "sourceing" ;
+    net:hasPropertyName10 "source-by" ;
+    net:hasPropertyName12 "source-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_cloud_c,
+        :leaf_comet_c2 .
+
+net:compositeClass_period-comet_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_period_p2 ;
+    net:composeFrom net:atomClass_comet_c2,
+        net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_comet_c2 ;
+    net:coverNode :leaf_comet_c2,
+        :leaf_period_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_comet_c2 ;
+    net:hasNaming "period-comet" ;
+    net:hasStructure "unknown" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Oortcloud_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Oortcloud ;
+    net:hasNaming "Oortcloud" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Oortcloud" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> a ns21:distant-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> a ns3:period ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_exist-01_e a :AMR_Leaf ;
+    :edge_e_a :leaf_also_a ;
+    :edge_e_c :leaf_cloud_c ;
+    :edge_e_d :leaf_distant-02_d ;
+    :hasConcept :concept_exist-01 ;
+    :hasVariable :variable_e .
+
+:leaf_heliosphere_h2 a :AMR_Leaf ;
+    :hasConcept :concept_heliosphere ;
+    :hasVariable :variable_h2 .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_e :leaf_exist-01_e ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
+
+:leaf_roughly_r a :AMR_Leaf ;
+    :hasConcept :concept_roughly ;
+    :hasVariable :variable_r .
+
+:leaf_times_t2 a :AMR_Leaf ;
+    :edge_t2_r :leaf_roughly_r ;
+    :hasConcept :concept_times ;
+    :hasVariable :variable_t2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> a ns3:cloud ;
+    rdfs:label "Oort cloud" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_also_a a :AMR_Leaf ;
+    :hasConcept :concept_also ;
+    :hasVariable :variable_a .
+
+:leaf_distant-02_d a :AMR_Leaf ;
+    :hasConcept :concept_distant-02 ;
+    :hasVariable :variable_d .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:atomClass_comet_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_comet_c2 ;
+    net:coverNode :leaf_comet_c2 ;
+    net:hasClassName "comet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "comet" ;
+    net:hasStructure "unknown" .
+
+net:individual_Oortcloud_c a net:Individual_Net ;
+    :role_name net:value_Oortcloud_blankNode ;
+    net:coverBaseNode :leaf_cloud_c ;
+    net:coverNode :leaf_cloud_c ;
+    net:hasIndividualLabel "Oortcloud" ;
+    net:hasMotherClassNet net:atomClass_cloud_c ;
+    net:hasNaming "Oortcloud" ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_cloud_c a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Oortcloud_blankNode ;
+    net:coverBaseNode :leaf_cloud_c ;
+    net:coverNode :leaf_cloud_c ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "unknown" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_comet_c2 a :AMR_Leaf ;
+    :edge_c2_p2 :leaf_period_p2 ;
+    :hasConcept :concept_comet ;
+    :hasVariable :variable_c2 .
+
+:leaf_source-02_s a :AMR_Leaf ;
+    :edge_s_c :leaf_cloud_c ;
+    :edge_s_c2 :leaf_comet_c2 ;
+    :hasConcept :concept_source-02 ;
+    :hasVariable :variable_s .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_period_p2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_period_p2 ;
+    net:coverNode :leaf_period_p2 ;
+    net:hasClassName "period" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "period" ;
+    net:hasStructure "unknown" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_period_p2 a :AMR_Leaf ;
+    :hasConcept :concept_period ;
+    :hasVariable :variable_p2 .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_cloud_c a :AMR_Leaf ;
+    :edge_c_name_Oortcloud :value_Oortcloud ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..089819b809fabd735174f3ce568cb4f2921bc3f5
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1141 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:exist-01.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG2 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG3 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG4 a ns21:FrameRole .
+
+ns21:long-03.ARG1 a ns21:FrameRole .
+
+ns21:possible-01.ARG1 a ns21:FrameRole .
+
+ns21:source-02.ARG0 a ns21:FrameRole .
+
+ns21:source-02.ARG1 a ns21:FrameRole .
+
+ns21:think-01.ARG1 a ns21:FrameRole .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:location a ns1:Role .
+
+ns3:mod a ns1:Role .
+
+ns3:quant a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_c2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_name_Oortcloud a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_e_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_e_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_d a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_l_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_s_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t2_r a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_c :leaf_cloud_c ;
+    :edge_h_d :leaf_distant-02_d ;
+    :edge_h_h2 :leaf_heliosphere_h2 ;
+    :edge_h_t2 :leaf_times_t2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_long-03_l a :AMR_Leaf ;
+    :edge_l_p2 :leaf_period_p2 ;
+    :hasConcept :concept_long-03 ;
+    :hasVariable :variable_l .
+
+:leaf_think-01_t a :AMR_Leaf ;
+    :edge_t_s :leaf_source-02_s ;
+    :hasConcept :concept_think-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-21 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> ;
+    :hasRootLeaf :leaf_possible-01_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-21" ;
+    :hasSentenceStatement "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> a ns21:have-degree-91 ;
+    ns21:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns21:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    ns21:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> a ns21:long-03 ;
+    ns21:long-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-21" ;
+    ns1:has-sentence "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> a ns21:think-01 ;
+    ns21:think-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_also rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:also ;
+    :label "also" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:cloud ;
+    :label "cloud" .
+
+:concept_comet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:comet ;
+    :label "comet" .
+
+:concept_distant-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:distant-02 ;
+    :label "distant-02" .
+
+:concept_exist-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:exist-01 ;
+    :label "exist-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_heliosphere rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:heliosphere ;
+    :label "heliosphere" .
+
+:concept_long-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:long-03 ;
+    :label "long-03" .
+
+:concept_period rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:period ;
+    :label "period" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_roughly rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:roughly ;
+    :label "roughly" .
+
+:concept_source-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:source-02 ;
+    :label "source-02" .
+
+:concept_think-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:think-01 ;
+    :label "think-01" .
+
+:concept_times rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:times ;
+    :label "times" .
+
+:leaf_also_a a :AMR_Leaf ;
+    :hasConcept :concept_also ;
+    :hasVariable :variable_a .
+
+:leaf_comet_c2 a :AMR_Leaf ;
+    :edge_c2_p2 :leaf_period_p2 ;
+    :hasConcept :concept_comet ;
+    :hasVariable :variable_c2 .
+
+:leaf_exist-01_e a :AMR_Leaf ;
+    :edge_e_a :leaf_also_a ;
+    :edge_e_c :leaf_cloud_c ;
+    :edge_e_d :leaf_distant-02_d ;
+    :hasConcept :concept_exist-01 ;
+    :hasVariable :variable_e .
+
+:leaf_heliosphere_h2 a :AMR_Leaf ;
+    :hasConcept :concept_heliosphere ;
+    :hasVariable :variable_h2 .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_e :leaf_exist-01_e ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
+
+:leaf_roughly_r a :AMR_Leaf ;
+    :hasConcept :concept_roughly ;
+    :hasVariable :variable_r .
+
+:leaf_source-02_s a :AMR_Leaf ;
+    :edge_s_c :leaf_cloud_c ;
+    :edge_s_c2 :leaf_comet_c2 ;
+    :hasConcept :concept_source-02 ;
+    :hasVariable :variable_s .
+
+:leaf_times_t2 a :AMR_Leaf ;
+    :edge_t2_r :leaf_roughly_r ;
+    :hasConcept :concept_times ;
+    :hasVariable :variable_t2 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_Oortcloud a :AMR_Value ;
+    rdfs:label "Oortcloud" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    :label "a" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    :label "c" ;
+    :name "Oort cloud" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> ;
+    :label "l" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    :label "t2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> a ns3:also ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> a ns3:comet ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> a ns21:exist-01 ;
+    ns21:exist-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns3:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> a ns3:heliosphere ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> a ns21:possible-01 ;
+    ns21:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> a ns3:roughly ;
+    ns3:op1 "1000" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> a ns21:source-02 ;
+    ns21:source-02.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:source-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> a ns3:times ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:distant-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:exist-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:long-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:possible-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:source-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:think-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:also a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:cloud a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:comet a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:heliosphere a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:period a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:roughly a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:times a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_distant-02_d a :AMR_Leaf ;
+    :hasConcept :concept_distant-02 ;
+    :hasVariable :variable_d .
+
+:leaf_period_p2 a :AMR_Leaf ;
+    :hasConcept :concept_period ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> a ns21:distant-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> a ns3:period ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_cloud_c a :AMR_Leaf ;
+    :edge_c_name_Oortcloud :value_Oortcloud ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> a ns3:cloud ;
+    rdfs:label "Oort cloud" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..f21c2edbcf649768c743e28a5e875710b952e92b
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1361 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:exist-01.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG2 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG3 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG4 a ns21:FrameRole .
+
+ns21:long-03.ARG1 a ns21:FrameRole .
+
+ns21:possible-01.ARG1 a ns21:FrameRole .
+
+ns21:source-02.ARG0 a ns21:FrameRole .
+
+ns21:source-02.ARG1 a ns21:FrameRole .
+
+ns21:think-01.ARG1 a ns21:FrameRole .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:location a ns1:Role .
+
+ns3:mod a ns1:Role .
+
+ns3:quant a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_c2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_name_Oortcloud a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_e_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_e_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_d a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_l_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_s_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t2_r a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-21 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> ;
+    :hasRootLeaf :leaf_possible-01_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-21" ;
+    :hasSentenceStatement "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_long_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_long-03_l ;
+    net:coverNode :leaf_long-03_l ;
+    net:hasNaming "long" ;
+    net:hasPropertyName "long" ;
+    net:hasPropertyName01 "longing" ;
+    net:hasPropertyName10 "long-by" ;
+    net:hasPropertyName12 "long-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_period_p2 .
+
+net:atomProperty_think_t a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_source_s,
+        net:atomProperty_source_s ;
+    net:coverBaseNode :leaf_think-01_t ;
+    net:coverNode :leaf_think-01_t ;
+    net:hasNaming "think" ;
+    net:hasPropertyName "think" ;
+    net:hasPropertyName01 "thinking" ;
+    net:hasPropertyName10 "think-by" ;
+    net:hasPropertyName12 "think-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_source-02_s .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_period_p2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_period_p2 ;
+    net:coverNode :leaf_period_p2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "period" ;
+    net:hasMotherClassNet net:atomClass_period_p2 ;
+    net:hasNaming "period" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG2 net:atomProperty_distant_d ;
+    :role_ARG3 net:atomClass_times_t2 ;
+    :role_ARG4 net:atomClass_heliosphere_h2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:phenomena_possible-modality_p a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:atomProperty_exist_e ;
+    net:coverBaseNode :leaf_possible-01_p ;
+    net:coverNode :leaf_possible-01_p ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> a ns21:have-degree-91 ;
+    ns21:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns21:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    ns21:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> a ns21:long-03 ;
+    ns21:long-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-21" ;
+    ns1:has-sentence "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> a ns21:think-01 ;
+    ns21:think-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_also rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:also ;
+    :label "also" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:cloud ;
+    :label "cloud" .
+
+:concept_comet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:comet ;
+    :label "comet" .
+
+:concept_distant-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:distant-02 ;
+    :label "distant-02" .
+
+:concept_exist-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:exist-01 ;
+    :label "exist-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_heliosphere rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:heliosphere ;
+    :label "heliosphere" .
+
+:concept_long-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:long-03 ;
+    :label "long-03" .
+
+:concept_period rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:period ;
+    :label "period" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_roughly rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:roughly ;
+    :label "roughly" .
+
+:concept_source-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:source-02 ;
+    :label "source-02" .
+
+:concept_think-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:think-01 ;
+    :label "think-01" .
+
+:concept_times rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:times ;
+    :label "times" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    :label "a" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    :label "c" ;
+    :name "Oort cloud" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> ;
+    :label "l" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    :label "t2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_also_a a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_also_a ;
+    net:coverNode :leaf_also_a ;
+    net:hasClassName "also" ;
+    net:hasNaming "also" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_heliosphere_h2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_heliosphere_h2 ;
+    net:coverNode :leaf_heliosphere_h2 ;
+    net:hasClassName "heliosphere" ;
+    net:hasNaming "heliosphere" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_roughly_r a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_roughly_r ;
+    net:coverNode :leaf_roughly_r ;
+    net:hasClassName "roughly" ;
+    net:hasNaming "roughly" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_source_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG1 net:atomClass_comet_c2,
+        net:compositeClass_period-comet_c2 ;
+    net:composeFrom net:atomProperty_source_s ;
+    net:coverBaseNode :leaf_source-02_s ;
+    net:coverNode :leaf_source-02_s ;
+    net:hasClassName "source" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "source" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_times_t2 a net:Atom_Class_Net ;
+    :role_quant net:atomClass_roughly_r ;
+    net:coverBaseNode :leaf_times_t2 ;
+    net:coverNode :leaf_times_t2 ;
+    net:hasClassName "times" ;
+    net:hasNaming "times" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_distant_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_distant-02_d ;
+    net:coverNode :leaf_distant-02_d ;
+    net:hasNaming "distant" ;
+    net:hasPropertyName "distant" ;
+    net:hasPropertyName01 "distanting" ;
+    net:hasPropertyName10 "distant-by" ;
+    net:hasPropertyName12 "distant-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_exist_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_mod net:atomClass_also_a ;
+    net:coverBaseNode :leaf_exist-01_e ;
+    net:coverNode :leaf_exist-01_e ;
+    net:hasNaming "exist" ;
+    net:hasPropertyName "exist" ;
+    net:hasPropertyName01 "existing" ;
+    net:hasPropertyName10 "exist-by" ;
+    net:hasPropertyName12 "exist-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_also_a,
+        :leaf_cloud_c .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> a ns3:also ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> a ns3:comet ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> a ns21:exist-01 ;
+    ns21:exist-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns3:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> a ns3:heliosphere ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> a ns21:possible-01 ;
+    ns21:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> a ns3:roughly ;
+    ns3:op1 "1000" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> a ns21:source-02 ;
+    ns21:source-02.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:source-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> a ns3:times ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:distant-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:exist-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:long-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:possible-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:source-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:think-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:also a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:cloud a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:comet a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:heliosphere a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:period a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:roughly a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:times a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_c :leaf_cloud_c ;
+    :edge_h_d :leaf_distant-02_d ;
+    :edge_h_h2 :leaf_heliosphere_h2 ;
+    :edge_h_t2 :leaf_times_t2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_long-03_l a :AMR_Leaf ;
+    :edge_l_p2 :leaf_period_p2 ;
+    :hasConcept :concept_long-03 ;
+    :hasVariable :variable_l .
+
+:leaf_think-01_t a :AMR_Leaf ;
+    :edge_t_s :leaf_source-02_s ;
+    :hasConcept :concept_think-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_Oortcloud a :AMR_Value ;
+    rdfs:label "Oortcloud" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_source_s a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG1 net:atomClass_comet_c2,
+        net:compositeClass_period-comet_c2 ;
+    net:coverBaseNode :leaf_source-02_s ;
+    net:coverNode :leaf_source-02_s ;
+    net:hasNaming "source" ;
+    net:hasPropertyName "source" ;
+    net:hasPropertyName01 "sourceing" ;
+    net:hasPropertyName10 "source-by" ;
+    net:hasPropertyName12 "source-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_cloud_c,
+        :leaf_comet_c2 .
+
+net:compositeClass_period-comet_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_period_p2 ;
+    net:composeFrom net:atomClass_comet_c2,
+        net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_comet_c2 ;
+    net:coverNode :leaf_comet_c2,
+        :leaf_period_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_comet_c2 ;
+    net:hasNaming "period-comet" ;
+    net:hasStructure "unknown" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Oortcloud_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Oortcloud ;
+    net:hasNaming "Oortcloud" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Oortcloud" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> a ns21:distant-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> a ns3:period ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_exist-01_e a :AMR_Leaf ;
+    :edge_e_a :leaf_also_a ;
+    :edge_e_c :leaf_cloud_c ;
+    :edge_e_d :leaf_distant-02_d ;
+    :hasConcept :concept_exist-01 ;
+    :hasVariable :variable_e .
+
+:leaf_heliosphere_h2 a :AMR_Leaf ;
+    :hasConcept :concept_heliosphere ;
+    :hasVariable :variable_h2 .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_e :leaf_exist-01_e ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
+
+:leaf_roughly_r a :AMR_Leaf ;
+    :hasConcept :concept_roughly ;
+    :hasVariable :variable_r .
+
+:leaf_times_t2 a :AMR_Leaf ;
+    :edge_t2_r :leaf_roughly_r ;
+    :hasConcept :concept_times ;
+    :hasVariable :variable_t2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> a ns3:cloud ;
+    rdfs:label "Oort cloud" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_also_a a :AMR_Leaf ;
+    :hasConcept :concept_also ;
+    :hasVariable :variable_a .
+
+:leaf_distant-02_d a :AMR_Leaf ;
+    :hasConcept :concept_distant-02 ;
+    :hasVariable :variable_d .
+
+net:atomClass_comet_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_comet_c2 ;
+    net:coverNode :leaf_comet_c2 ;
+    net:hasClassName "comet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "comet" ;
+    net:hasStructure "unknown" .
+
+net:individual_Oortcloud_c a net:Individual_Net ;
+    :role_name net:value_Oortcloud_blankNode ;
+    net:coverBaseNode :leaf_cloud_c ;
+    net:coverNode :leaf_cloud_c ;
+    net:hasIndividualLabel "Oortcloud" ;
+    net:hasMotherClassNet net:atomClass_cloud_c ;
+    net:hasNaming "Oortcloud" ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_cloud_c a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Oortcloud_blankNode ;
+    net:coverBaseNode :leaf_cloud_c ;
+    net:coverNode :leaf_cloud_c ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "unknown" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_comet_c2 a :AMR_Leaf ;
+    :edge_c2_p2 :leaf_period_p2 ;
+    :hasConcept :concept_comet ;
+    :hasVariable :variable_c2 .
+
+:leaf_source-02_s a :AMR_Leaf ;
+    :edge_s_c :leaf_cloud_c ;
+    :edge_s_c2 :leaf_comet_c2 ;
+    :hasConcept :concept_source-02 ;
+    :hasVariable :variable_s .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_period_p2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_period_p2 ;
+    net:coverNode :leaf_period_p2 ;
+    net:hasClassName "period" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "period" ;
+    net:hasStructure "unknown" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_period_p2 a :AMR_Leaf ;
+    :hasConcept :concept_period ;
+    :hasVariable :variable_p2 .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_cloud_c a :AMR_Leaf ;
+    :edge_c_name_Oortcloud :value_Oortcloud ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..cb2241f839f18dd1d284bbdf117c5061d9f1954b
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,70 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Oortcloud> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    rdfs:label "Oortcloud" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#also> a owl:Class ;
+    rdfs:label "also" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#distant> a owl:ObjectProperty ;
+    rdfs:label "distant" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#exist> a owl:ObjectProperty ;
+    rdfs:label "exist" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#heliosphere> a owl:Class ;
+    rdfs:label "heliosphere" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#long> a owl:ObjectProperty ;
+    rdfs:label "long" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#period-comet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#comet> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#roughly> a owl:Class ;
+    rdfs:label "roughly" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#source> a owl:Class ;
+    rdfs:label "source" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#think> a owl:ObjectProperty ;
+    rdfs:label "think" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#times> a owl:Class ;
+    rdfs:label "times" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#comet> a owl:Class ;
+    rdfs:label "comet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#period> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#period> ;
+    rdfs:label "period" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
index 64d8dc1c8c74d79890d662c486e09963b36e6f88..6148773f012a9157e62cb7f7b6a7c396992bf1a4 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -1,67 +1,72 @@
 @prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
 @prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
 @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
-@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
-@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
-@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 @prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
-ns1:Concept a rdfs:Class,
+ns3:Concept a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Concept" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:Role a rdfs:Class,
+ns3:Role a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Role" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
-    ns1:hasSentence "The sun is a star." ;
-    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
 
-<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
-    ns1:hasSentence "Earth is a planet." ;
-    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns21:equal-01.ARG1 a ns21:FrameRole .
+ns2:be-located-at-91.ARG1 a ns2:FrameRole .
 
-ns21:equal-01.ARG2 a ns21:FrameRole .
+ns2:be-located-at-91.ARG2 a ns2:FrameRole .
 
-ns21:extend-01.ARG0 a ns21:FrameRole .
+ns2:contain-01.ARG0 a ns2:FrameRole .
 
-ns21:extend-01.ARG4 a ns21:FrameRole .
+ns2:contain-01.ARG1 a ns2:FrameRole .
 
-ns21:oppose-01.ARG0 a ns21:FrameRole .
+ns2:include-91.ARG1 a ns2:FrameRole .
 
-ns21:pressure-01.ARG0 a ns21:FrameRole .
+ns2:include-91.ARG2 a ns2:FrameRole .
 
-ns21:scatter-01.ARG1 a ns21:FrameRole .
+ns2:include-91.ARG3 a ns2:FrameRole .
 
-ns3:direction a ns1:Role .
+ns2:possible-01.ARG1 a ns2:FrameRole .
 
-ns3:domain a ns1:Role,
+ns2:see-01.ARG1 a ns2:FrameRole .
+
+ns11:dayperiod a ns3:Role .
+
+ns11:domain a ns3:Role,
         owl:AnnotationProperty,
         owl:NamedIndividual .
 
-ns3:mod a ns1:Role .
+ns11:location a ns3:Role .
 
-ns1:NamedEntity a ns1:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-EntityType",
-        "AMR-Term" ;
-    rdfs:subClassOf :AMR_Linked_Data .
+ns11:op1 a ns3:Role .
+
+ns11:quant a ns3:Role .
 
-ns1:hasID a owl:AnnotationProperty .
+ns11:time a ns3:Role .
 
-ns1:hasSentence a owl:AnnotationProperty .
+ns11:unit a ns3:Role .
 
-ns1:root a owl:AnnotationProperty .
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
 
 <https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
     owl:versionIRI :0.1 .
@@ -71,70 +76,91 @@ ns1:root a owl:AnnotationProperty .
 :AMR_Prep_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Root a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:edge_e2_e3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG4 ;
-    :hasRoleID "ARG4" .
+:edge_a_name_Orion a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_e2_o2 a :AMR_Edge ;
-    :hasRoleID "direction" .
+:edge_b_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
 
-:edge_e2_p a :AMR_Edge ;
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_a a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_e_p a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
-
-:edge_e_p2 a :AMR_Edge ;
+:edge_c2_s2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_e_p3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
+:edge_c_a a :AMR_Edge ;
+    :hasRoleID "location" .
 
-:edge_m_ii a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_d2_l a :AMR_Edge ;
+    :hasRoleID "unit" .
 
-:edge_o_p3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_d2_quant_26000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_p2_w a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_d_n4 a :AMR_Edge ;
+    :hasRoleID "dayperiod" .
 
-:edge_p3_m a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_g_name_MilkyWay a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p9_ARG0_d a :AMR_Edge ;
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_ii_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p9_ARG0_g a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_p9_ARG1_e3 a :AMR_Edge ;
+:edge_p9_ARG1_c a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_p_h a :AMR_Edge ;
-    :hasAmrRole :role_domain ;
-    :hasRoleID "domain" .
+:edge_p_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_c a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_r_d2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_s2_d a :AMR_Edge ;
+:edge_s4_s3 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_w_s a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_s4_s5 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_s5_d a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
 :fromAmrLkFramerole a owl:AnnotationProperty ;
     rdfs:subPropertyOf :fromAmrLk .
@@ -228,15 +254,6 @@ ns1:root a owl:AnnotationProperty .
     :hasConceptLink "obligate-01" ;
     :label "obligation-modality" .
 
-:phenomena_modality_possible a owl:Class ;
-    rdfs:subClassOf :phenomena_modality ;
-    :hasConceptLink "allow-01",
-        "grant-01",
-        "likely-01",
-        "permit-01",
-        "possible-01" ;
-    :label "possible-modality" .
-
 :phenomena_modality_prohibition a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "prohibit-01" ;
@@ -283,9 +300,9 @@ ns1:root a owl:AnnotationProperty .
     :hasReification false ;
     :hasRelationName "quant" .
 
-:role_ARG3 a owl:Class ;
+:role_ARG4 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG3" .
+    :label "ARG4" .
 
 :role_ARG5 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
@@ -307,6 +324,14 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG9" .
 
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
 :role_have-degree-91 a owl:Class ;
     rdfs:subClassOf :AMR_Specific_Role ;
     :getPropertyType <net:specificProperty> .
@@ -320,13 +345,15 @@ ns1:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
-:role_name a owl:Class ;
+:role_mod a owl:Class ;
     rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
-
-:role_op1 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
 
 :role_op2 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
@@ -373,15 +400,11 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:role_quant a owl:Class ;
-    rdfs:subClassOf :AMR_Specific_Role ;
-    :label "quant" .
-
-:root_WikiAbstract-SolarSystem-20 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> ;
-    :hasRootLeaf :leaf_point_p ;
-    :hasSentenceID "WikiAbstract-SolarSystem-20" ;
-    :hasSentenceStatement "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." .
+:root_WikiAbstract-SolarSystem-22 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> ;
+    :hasRootLeaf :leaf_be-located-at-91_b ;
+    :hasSentenceID "WikiAbstract-SolarSystem-22" ;
+    :hasSentenceStatement "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -446,58 +469,86 @@ cprm:targetOntologyURI a rdf:Property ;
     rdfs:range xsd:string ;
     rdfs:subPropertyOf cprm:configParamProperty .
 
-<https://tenet.tetras-libre.fr/extract-result#disc-hasPart-edge> a owl:Class ;
-    rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#edge> ],
-        <https://tenet.tetras-libre.fr/extract-result#disc> ;
+<https://tenet.tetras-libre.fr/extract-result#MilkyWay> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#galaxy> ;
+    rdfs:label "MilkyWay" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#Orion> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#arm> ;
+    rdfs:label "Orion" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#extend> a owl:ObjectProperty ;
-    rdfs:label "extend" ;
+<https://tenet.tetras-libre.fr/extract-result#be> a owl:ObjectProperty ;
+    rdfs:label "be" ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#heliopause> a owl:Class ;
-    rdfs:label "heliopause" ;
-    rdfs:subClassOf sys:Undetermined_Thing ;
+<https://tenet.tetras-libre.fr/extract-result#center> a owl:Class ;
+    rdfs:label "center" ;
+    rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#interstellar-medium> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#medium> ;
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#oppose> a owl:ObjectProperty ;
-    rdfs:label "oppose" ;
+<https://tenet.tetras-libre.fr/extract-result#date> a owl:ObjectProperty ;
+    rdfs:label "date" ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#out> a owl:Class ;
-    rdfs:label "out" ;
+<https://tenet.tetras-libre.fr/extract-result#distance-quantity> a owl:Class ;
+    rdfs:label "distance-quantity" ;
     rdfs:subClassOf sys:Undetermined_Thing ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#pressure-equal-point> a owl:Class ;
-    rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#equal> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#point> ],
-        <https://tenet.tetras-libre.fr/extract-result#pressure> ;
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#pressure-equal-pressure> a owl:Class ;
-    rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#equal> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#pressure> ],
-        <https://tenet.tetras-libre.fr/extract-result#pressure> ;
+<https://tenet.tetras-libre.fr/extract-result#light-year> a owl:Class ;
+    rdfs:label "light-year" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#night> a owl:Class ;
+    rdfs:label "night" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#relative-position> a owl:Class ;
+    rdfs:label "relative-position" ;
+    rdfs:subClassOf sys:Entity ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#scatter> a owl:ObjectProperty ;
-    rdfs:label "scatter" ;
+<https://tenet.tetras-libre.fr/extract-result#see> a owl:ObjectProperty ;
+    rdfs:label "see" ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#sun-wind> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#wind> ;
+<https://tenet.tetras-libre.fr/extract-result#sky> a owl:Class ;
+    rdfs:label "sky" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#star-include-star> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#star> ],
+        <https://tenet.tetras-libre.fr/extract-result#star> ;
     sys:fromStructure "unknown" .
 
 <https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
@@ -508,123 +559,119 @@ net:Composite_Property_Net a owl:Class ;
 net:Logical_Set_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Phenomena_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
 net:Property_Axiom_Net a owl:Class ;
     rdfs:subClassOf net:Axiom_Net .
 
 net:Property_Direction a owl:Class ;
     rdfs:subClassOf net:Feature .
 
-net:Value_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
 net:abstractionClass a owl:AnnotationProperty ;
     rdfs:label "abstraction class" ;
     rdfs:subPropertyOf net:objectValue .
 
-net:atomClass_out_o2 a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_out_o2 ;
-    net:coverNode :leaf_out_o2 ;
-    net:hasClassName "out" ;
-    net:hasNaming "out" ;
+net:atomClass_light-year_l a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_light-year_l ;
+    net:coverNode :leaf_light-year_l ;
+    net:hasClassName "light-year" ;
+    net:hasNaming "light-year" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_night_n4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_night_n4 ;
+    net:coverNode :leaf_night_n4 ;
+    net:hasClassName "night" ;
+    net:hasNaming "night" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sky_s5 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sky_s5 ;
+    net:coverNode :leaf_sky_s5 ;
+    net:hasClassName "sky" ;
+    net:hasNaming "sky" ;
     net:hasStructure "unknown" .
 
 net:atomOf a owl:AnnotationProperty ;
     rdfs:label "atom of" ;
     rdfs:subPropertyOf net:typeProperty .
 
-net:atomProperty_extend_e2 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_point_p ;
-    :role_ARG4 net:atomClass_edge_e3 ;
-    net:coverBaseNode :leaf_extend-01_e2 ;
-    net:coverNode :leaf_extend-01_e2 ;
-    net:hasNaming "extend" ;
-    net:hasPropertyName "extend" ;
-    net:hasPropertyName01 "extending" ;
-    net:hasPropertyName10 "extend-by" ;
-    net:hasPropertyName12 "extend-of" ;
+net:atomProperty_be_b a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG2 net:atomClass_relative-position_r ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b ;
+    net:hasNaming "be" ;
+    net:hasPropertyName "be" ;
+    net:hasPropertyName01 "being" ;
+    net:hasPropertyName10 "be-by" ;
+    net:hasPropertyName12 "be-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_edge_e3,
-        :leaf_point_p .
-
-net:atomProperty_oppose_o a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_pressure_p3,
-        net:atomProperty_pressure_p3 ;
-    net:coverBaseNode :leaf_oppose-01_o ;
-    net:coverNode :leaf_oppose-01_o ;
-    net:hasNaming "oppose" ;
-    net:hasPropertyName "oppose" ;
-    net:hasPropertyName01 "opposeing" ;
-    net:hasPropertyName10 "oppose-by" ;
-    net:hasPropertyName12 "oppose-of" ;
+    net:targetArgumentNode :leaf_relative-position_r,
+        :leaf_system_s .
+
+net:atomProperty_contain_c2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_arm_a,
+        net:individual_Orion_a ;
+    :role_ARG1 net:atomClass_star_s2 ;
+    net:coverBaseNode :leaf_contain-01_c2 ;
+    net:coverNode :leaf_contain-01_c2 ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_pressure-01_p3 .
-
-net:atomProperty_scatter_s2 a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_disc_d ;
-    net:coverBaseNode :leaf_scatter-01_s2 ;
-    net:coverNode :leaf_scatter-01_s2 ;
-    net:hasNaming "scatter" ;
-    net:hasPropertyName "scatter" ;
-    net:hasPropertyName01 "scattering" ;
-    net:hasPropertyName10 "scatter-by" ;
-    net:hasPropertyName12 "scatter-of" ;
+    net:targetArgumentNode :leaf_arm_a,
+        :leaf_star_s2 .
+
+net:atomProperty_date_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_date-entity_d ;
+    net:coverNode :leaf_date-entity_d ;
+    net:hasNaming "date" ;
+    net:hasPropertyName "date" ;
+    net:hasPropertyName01 "dateing" ;
+    net:hasPropertyName10 "date-by" ;
+    net:hasPropertyName12 "date-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_galaxy_g,
+        net:individual_MilkyWay_g ;
+    :role_ARG1 net:atomClass_center_c ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_disc_d .
+    net:targetArgumentNode :leaf_center_c,
+        :leaf_galaxy_g .
 
 net:atomType a owl:AnnotationProperty ;
     rdfs:label "atom type" ;
     rdfs:subPropertyOf net:objectType .
 
-net:compositeClass_disc-hasPart-edge_d a net:Composite_Class_Net ;
-    net:composeFrom net:atomClass_disc_d,
-        net:atomClass_edge_e3,
-        net:atomProperty_hasPart_p9 ;
-    net:coverBaseNode :leaf_disc_d ;
-    net:coverNode :leaf_disc_d,
-        :leaf_edge_e3,
-        :leaf_hasPart_p9 ;
-    net:hasMotherClassNet net:atomClass_disc_d ;
-    net:hasNaming "disc-hasPart-edge" ;
-    net:hasRestriction net:restriction_hasPart-edge_p9 ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_pressure-equal-point_p2 a net:Composite_Class_Net ;
-    :role_ARG0 net:atomClass_wind_w,
-        net:compositeClass_sun-wind_w ;
-    net:composeFrom net:atomClass_point_p,
-        net:atomClass_pressure_p2,
-        net:atomProperty_equal_e ;
-    net:coverBaseNode :leaf_pressure-01_p2 ;
-    net:coverNode :leaf_equal-01_e,
-        :leaf_point_p,
-        :leaf_pressure-01_p2 ;
-    net:hasMotherClassNet net:atomClass_pressure_p2 ;
-    net:hasNaming "pressure-equal-point" ;
-    net:hasRestriction net:restriction_equal-point_e ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_pressure-equal-pressure_p2 a net:Composite_Class_Net ;
-    :role_ARG0 net:atomClass_wind_w,
-        net:compositeClass_sun-wind_w ;
-    net:composeFrom net:atomClass_pressure_p2,
-        net:atomClass_pressure_p3,
-        net:atomProperty_equal_e ;
-    net:coverBaseNode :leaf_pressure-01_p2 ;
-    net:coverNode :leaf_equal-01_e,
-        :leaf_pressure-01_p2,
-        :leaf_pressure-01_p3 ;
-    net:hasMotherClassNet net:atomClass_pressure_p2 ;
-    net:hasNaming "pressure-equal-pressure" ;
-    net:hasRestriction net:restriction_equal-pressure_e ;
+net:compositeClass_star-include-star_s2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_star_s2,
+        net:atomClass_star_s3,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_star_s2,
+        :leaf_star_s3 ;
+    net:hasMotherClassNet net:atomClass_star_s2 ;
+    net:hasNaming "star-include-star" ;
+    net:hasRestriction net:restriction_include-star_ii ;
     net:hasStructure "unknown" .
 
 net:entityClass a owl:AnnotationProperty ;
@@ -722,26 +769,6 @@ net:has_target a owl:AnnotationProperty ;
     rdfs:label "has target" ;
     rdfs:subPropertyOf net:has_relation_value .
 
-net:individual_interstellar_ii a net:Individual_Net ;
-    net:composeFrom net:atomClass_interstellar_ii ;
-    net:coverBaseNode :leaf_interstellar_ii ;
-    net:coverNode :leaf_interstellar_ii ;
-    net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "interstellar" ;
-    net:hasMotherClassNet net:atomClass_interstellar_ii ;
-    net:hasNaming "interstellar" ;
-    net:hasStructure "unknown" .
-
-net:individual_sun_s a net:Individual_Net ;
-    net:composeFrom net:atomClass_sun_s ;
-    net:coverBaseNode :leaf_sun_s ;
-    net:coverNode :leaf_sun_s ;
-    net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "sun" ;
-    net:hasMotherClassNet net:atomClass_sun_s ;
-    net:hasNaming "sun" ;
-    net:hasStructure "unknown" .
-
 net:inverse_direction a owl:NamedIndividual .
 
 net:listBy a owl:AnnotationProperty ;
@@ -766,6 +793,16 @@ net:modCat2 a owl:AnnotationProperty ;
 
 net:normal_direction a owl:NamedIndividual .
 
+net:phenomena_possible-modality_p a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:atomProperty_see_s4 ;
+    net:coverBaseNode :leaf_possible-01_p ;
+    net:coverNode :leaf_possible-01_p ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "unknown" .
+
 net:relationOf a owl:AnnotationProperty ;
     rdfs:label "relation of" ;
     rdfs:subPropertyOf net:typeProperty .
@@ -778,176 +815,207 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> a ns21:equal-01 ;
-    ns21:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
-    ns21:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p>,
-        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> a ns2:contain-01 ;
+    ns2:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    ns2:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> a ns21:extend-01 ;
-    ns21:extend-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
-    ns21:extend-01.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
-    ns3:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> a ns11:galaxy ;
+    rdfs:label "Milky Way" ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> a ns21:oppose-01 ;
-    ns21:oppose-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> a ns2:include-91 ;
+    ns2:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    ns2:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns2:include-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> a ns1:AMR ;
-    ns1:has-id "WikiAbstract-SolarSystem-20" ;
-    ns1:has-sentence "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." ;
-    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> .
-
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> a ns21:scatter-01 ;
-    ns21:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> a ns2:possible-01 ;
+    ns2:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-22" ;
+    ns3:has-sentence "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
 <http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
 
-ns1:AMR a owl:Class ;
+ns3:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_Value a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:disc ;
-    :label "disc" .
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
-:concept_edge rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:edge ;
-    :label "edge" .
+:concept_arm rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:arm ;
+    :label "arm" .
 
-:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:equal-01 ;
-    :label "equal-01" .
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:be-located-at-91 ;
+    :label "be-located-at-91" .
 
-:concept_extend-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:extend-01 ;
-    :label "extend-01" .
+:concept_center rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:center ;
+    :label "center" .
 
-:concept_heliopause rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:heliopause ;
-    :label "heliopause" .
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:contain-01 ;
+    :label "contain-01" .
 
-:concept_interstellar rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:interstellar ;
-    :label "interstellar" .
+:concept_date-entity rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:date-entity ;
+    :label "date-entity" .
 
-:concept_medium rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns1:medium ;
-    :label "medium" .
+:concept_distance-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:distance-quantity ;
+    :label "distance-quantity" .
 
-:concept_oppose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:oppose-01 ;
-    :label "oppose-01" .
+:concept_galaxy rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:galaxy ;
+    :label "galaxy" .
 
-:concept_out rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:out ;
-    :label "out" .
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:include-91 ;
+    :label "include-91" .
+
+:concept_light-year rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:light-year ;
+    :label "light-year" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_night rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:night ;
+    :label "night" .
 
 :concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:part ;
+    :fromAmrLk ns11:part ;
     :isReifiedConcept true ;
     :label "hasPart" .
 
-:concept_point rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:point ;
-    :label "point" .
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_relative-position rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:relative-position ;
+    :label "relative-position" .
 
-:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:scatter-01 ;
-    :label "scatter-01" .
+:concept_see-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:see-01 ;
+    :label "see-01" .
 
-:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:sun ;
-    :label "sun" .
+:concept_sky rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sky ;
+    :label "sky" .
 
-:concept_wind rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:wind ;
-    :label "wind" .
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:system ;
+    :label "system" .
 
-:role_ARG4 a owl:Class,
+:role_ARG3 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG4" .
+    :label "ARG3" .
 
-:role_domain a owl:Class,
+:role_op1 a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :hasRelationName "domain" ;
-    :label "domain" ;
-    :toReifyAsConcept "domain" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
 
-:variable_d a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
-    :label "d" .
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    :label "a" ;
+    :name "Orion" .
 
-:variable_e a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> ;
-    :label "e" .
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> ;
+    :label "b" .
 
-:variable_e2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> ;
-    :label "e2" .
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    :label "c" .
 
-:variable_e3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
-    :label "e3" .
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> ;
+    :label "c2" .
 
-:variable_h a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
-    :label "h" .
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> ;
+    :label "g" ;
+    :name "Milky Way" .
 
 :variable_ii a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> ;
     :label "ii" .
 
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    :label "l" .
+
 :variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
     :label "m" .
 
-:variable_o a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> ;
-    :label "o" .
-
-:variable_o2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
-    :label "o2" .
+:variable_n4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    :label "n4" .
 
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> ;
     :label "p" .
 
-:variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
-    :label "p2" .
-
-:variable_p3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
-    :label "p3" .
-
-:variable_p9 a ns3:part,
+:variable_p9 a ns11:part,
         :AMR_Variable ;
     :isReifiedVariable true ;
     :label "p9" .
 
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    :label "r" .
+
 :variable_s a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
-    :label "s" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    :label "s" ;
+    :name "Solar System" .
 
 :variable_s2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
     :label "s2" .
 
-:variable_w a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
-    :label "w" .
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
+    :label "s4" .
+
+:variable_s5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
+    :label "s5" .
 
 sys:Degree a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
@@ -957,202 +1025,238 @@ sys:Feature a owl:Class ;
 
 sys:Out_AnnotationProperty a owl:AnnotationProperty .
 
-<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
-    rdfs:label "disc" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#edge> a owl:Class ;
-    rdfs:label "edge" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
-    rdfs:label "hasPart" ;
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
     rdfs:subPropertyOf sys:Out_ObjectProperty ;
     sys:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#interstellar> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#interstellar> ;
-    rdfs:label "interstellar" ;
-    rdfs:subClassOf sys:Undetermined_Thing ;
-    sys:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#medium> a owl:Class ;
-    rdfs:label "medium" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-<https://tenet.tetras-libre.fr/extract-result#point> a owl:Class ;
-    rdfs:label "point" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
 
-<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#sun> ;
-    rdfs:label "sun" ;
-    rdfs:subClassOf sys:Undetermined_Thing ;
-    sys:fromStructure "unknown" .
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
 
-<https://tenet.tetras-libre.fr/extract-result#wind> a owl:Class ;
-    rdfs:label "wind" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
-net:Axiom_Net a owl:Class ;
+net:Restriction_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Feature a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
+net:atomClass_distance-quantity_d2 a net:Atom_Class_Net ;
+    :role_quant net:value_26000_blankNode ;
+    net:coverBaseNode :leaf_distance-quantity_d2 ;
+    net:coverNode :leaf_distance-quantity_d2 ;
+    net:hasClassName "distance-quantity" ;
+    net:hasNaming "distance-quantity" ;
+    net:hasStructure "unknown" .
 
-net:compositeClass_interstellar-medium_m a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_interstellar_ii ;
-    net:composeFrom net:atomClass_interstellar_ii,
-        net:atomClass_medium_m ;
-    net:coverBaseNode :leaf_medium_m ;
-    net:coverNode :leaf_interstellar_ii,
-        :leaf_medium_m ;
+net:atomClass_relative-position_r a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomClass_center_c ;
+    :role_quant net:atomClass_distance-quantity_d2 ;
+    net:coverBaseNode :leaf_relative-position_r ;
+    net:coverNode :leaf_relative-position_r ;
+    net:hasClassName "relative-position" ;
     net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_medium_m ;
-    net:hasNaming "interstellar-medium" ;
+    net:hasNaming "relative-position" ;
     net:hasStructure "unknown" .
 
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_see_s4 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s3 ;
+    net:coverBaseNode :leaf_see-01_s4 ;
+    net:coverNode :leaf_see-01_s4 ;
+    net:hasNaming "see" ;
+    net:hasPropertyName "see" ;
+    net:hasPropertyName01 "seeing" ;
+    net:hasPropertyName10 "see-by" ;
+    net:hasPropertyName12 "see-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s3 .
+
 net:has_value a owl:AnnotationProperty ;
     rdfs:subPropertyOf net:netProperty .
 
+net:individual_MilkyWay_g a net:Individual_Net ;
+    :role_name net:value_MilkyWay_blankNode ;
+    net:coverBaseNode :leaf_galaxy_g ;
+    net:coverNode :leaf_galaxy_g ;
+    net:hasIndividualLabel "MilkyWay" ;
+    net:hasMotherClassNet net:atomClass_galaxy_g ;
+    net:hasNaming "MilkyWay" ;
+    net:hasStructure "unknown" .
+
+net:individual_Orion_a a net:Individual_Net ;
+    :role_name net:value_Orion_blankNode ;
+    net:coverBaseNode :leaf_arm_a ;
+    net:coverNode :leaf_arm_a ;
+    net:hasIndividualLabel "Orion" ;
+    net:hasMotherClassNet net:atomClass_arm_a ;
+    net:hasNaming "Orion" ;
+    net:hasStructure "unknown" .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" .
+
 net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-net:restriction_equal-point_e a net:Restriction_Net ;
-    net:composeFrom net:atomClass_point_p,
-        net:atomProperty_equal_e ;
-    net:coverBaseNode :leaf_equal-01_e ;
-    net:coverNode :leaf_equal-01_e,
-        :leaf_point_p ;
-    net:hasNaming "equal-point" ;
-    net:hasRestrictionNetValue net:atomClass_point_p ;
-    net:hasRestrictionOnProperty net:atomProperty_equal_e ;
+net:restriction_include-star_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_star_s3,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_star_s3 ;
+    net:hasNaming "include-star" ;
+    net:hasRestrictionNetValue net:atomClass_star_s3 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
     net:hasStructure "unknown" .
 
-net:restriction_equal-pressure_e a net:Restriction_Net ;
-    net:composeFrom net:atomClass_pressure_p3,
-        net:atomProperty_equal_e ;
-    net:coverBaseNode :leaf_equal-01_e ;
-    net:coverNode :leaf_equal-01_e,
-        :leaf_pressure-01_p3 ;
-    net:hasNaming "equal-pressure" ;
-    net:hasRestrictionNetValue net:atomClass_pressure_p3 ;
-    net:hasRestrictionOnProperty net:atomProperty_equal_e ;
-    net:hasStructure "unknown" .
+net:value_26000_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_26000 ;
+    net:hasNaming "26000" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "26000" .
 
-net:restriction_hasPart-edge_p9 a net:Restriction_Net ;
-    net:composeFrom net:atomClass_edge_e3,
-        net:atomProperty_hasPart_p9 ;
-    net:coverBaseNode :leaf_hasPart_p9 ;
-    net:coverNode :leaf_edge_e3,
-        :leaf_hasPart_p9 ;
-    net:hasNaming "hasPart-edge" ;
-    net:hasRestrictionNetValue net:atomClass_edge_e3 ;
-    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
-    net:hasStructure "unknown" .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> a ns2:be-located-at-91 ;
+    ns2:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    ns2:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> a ns3:date-entity ;
+    ns11:dayperiod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> a ns11:distance-quantity ;
+    ns11:quant "26000" ;
+    ns11:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> a ns11:light-year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> a ns3:disc ;
-    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> a ns11:night ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> a ns3:heliopause ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> a ns11:relative-position ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    ns11:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> a ns3:interstellar ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> a ns11:system ;
+    rdfs:label "Solar System" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> a ns1:medium ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> a ns2:see-01 ;
+    ns2:see-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> a ns3:out ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> a ns11:sky ;
+    ns11:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> a ns21:pressure-01 ;
-    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
+ns2:be-located-at-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> a ns3:sun ;
+ns2:contain-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> a ns3:wind ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
+ns2:include-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:equal-01 a ns1:Frame ;
+ns2:possible-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:extend-01 a ns1:Frame ;
+ns2:see-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:oppose-01 a ns1:Frame ;
+ns11:arm a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:scatter-01 a ns1:Frame ;
+ns11:center a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:disc a ns1:Concept ;
+ns11:distance-quantity a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:edge a ns1:Concept ;
+ns11:galaxy a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:heliopause a ns1:Concept ;
+ns11:light-year a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:interstellar a ns1:Concept ;
+ns11:night a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:out a ns1:Concept ;
+ns11:part a ns3:Role ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:part a ns1:Role ;
+ns11:relative-position a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:point a ns1:Concept ;
+ns11:sky a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:sun a ns1:Concept ;
+ns11:system a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:wind a ns1:Concept ;
+ns3:date-entity a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:medium a ns1:Concept ;
+ns3:most a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_pressure-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:pressure-01 ;
-    :label "pressure-01" .
+:concept_star rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#star> ;
+    :label "star" .
 
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_extend-01_e2 a :AMR_Leaf ;
-    :edge_e2_e3 :leaf_edge_e3 ;
-    :edge_e2_o2 :leaf_out_o2 ;
-    :edge_e2_p :leaf_point_p ;
-    :hasConcept :concept_extend-01 ;
-    :hasVariable :variable_e2 .
-
-:leaf_oppose-01_o a :AMR_Leaf ;
-    :edge_o_p3 :leaf_pressure-01_p3 ;
-    :hasConcept :concept_oppose-01 ;
-    :hasVariable :variable_o .
-
-:leaf_scatter-01_s2 a :AMR_Leaf ;
-    :edge_s2_d :leaf_disc_d ;
-    :hasConcept :concept_scatter-01 ;
-    :hasVariable :variable_s2 .
+:leaf_contain-01_c2 a :AMR_Leaf ;
+    :edge_c2_a :leaf_arm_a ;
+    :edge_c2_s2 :leaf_star_s2 ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_g :leaf_galaxy_g ;
+    :edge_p9_ARG1_c :leaf_center_c ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_s4 :leaf_see-01_s4 ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1161,67 +1265,128 @@ ns1:medium a ns1:Concept ;
         "neither" ;
     :label "conjunction" .
 
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
 :role_ARG2 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG2" .
 
-:role_mod a owl:Class,
+:role_quant a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :getDirectPropertyName "hasFeature"^^xsd:string ;
-    :getPropertyType rdfs:subClassOf,
-        owl:ObjectProperty ;
-    :label "mod" ;
-    :toReifyAsConcept "mod" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
 
-<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
-    rdfs:label "equal" ;
-    rdfs:subPropertyOf sys:Out_ObjectProperty ;
-    sys:fromStructure "unknown" .
+:value_26000 a :AMR_Value ;
+    rdfs:label "26000" .
 
-net:Individual_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+:value_MilkyWay a :AMR_Value ;
+    rdfs:label "MilkyWay" .
+
+:value_Orion a :AMR_Value ;
+    rdfs:label "Orion" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+<https://tenet.tetras-libre.fr/extract-result#star> a owl:Class ;
+    rdfs:label "star" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
 
 net:Property_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_heliopause_h a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_heliopause_h ;
-    net:coverNode :leaf_heliopause_h ;
-    net:hasClassName "heliopause" ;
-    net:hasNaming "heliopause" ;
+net:atomClass_arm_a a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Orion_blankNode ;
+    net:coverBaseNode :leaf_arm_a ;
+    net:coverNode :leaf_arm_a ;
+    net:hasClassName "arm" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "arm" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_center_c a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_center_c ;
+    net:coverNode :leaf_center_c ;
+    net:hasClassName "center" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "center" ;
     net:hasStructure "unknown" .
 
-net:atomProperty_pressure_p2 a net:Atom_Property_Net,
+net:atomClass_galaxy_g a net:Atom_Class_Net,
+        net:Class_Net,
         net:Deprecated_Net ;
-    :role_ARG0 net:atomClass_wind_w,
-        net:compositeClass_sun-wind_w ;
-    net:coverBaseNode :leaf_pressure-01_p2 ;
-    net:coverNode :leaf_pressure-01_p2 ;
-    net:hasNaming "pressure" ;
-    net:hasPropertyName "pressure" ;
-    net:hasPropertyName01 "pressureing" ;
-    net:hasPropertyName10 "pressure-by" ;
-    net:hasPropertyName12 "pressure-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_wind_w .
+    :role_name net:value_MilkyWay_blankNode ;
+    net:coverBaseNode :leaf_galaxy_g ;
+    net:coverNode :leaf_galaxy_g ;
+    net:hasClassName "galaxy" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "galaxy" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "unknown" .
 
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> a ns3:edge ;
+net:value_MilkyWay_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_MilkyWay ;
+    net:hasNaming "MilkyWay" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "MilkyWay" .
+
+net:value_Orion_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Orion ;
+    net:hasNaming "Orion" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Orion" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> a ns11:arm ;
+    rdfs:label "Orion" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> a ns21:pressure-01 ;
-    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> a ns11:center ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:pressure-01 a ns1:Frame ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#star> a ns3:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1243,138 +1408,118 @@ ns21:pressure-01 a ns1:Frame ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_heliopause_h a :AMR_Leaf ;
-    :hasConcept :concept_heliopause ;
-    :hasVariable :variable_h .
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_r :leaf_relative-position_r ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_date-entity_d a :AMR_Leaf ;
+    :edge_d_n4 :leaf_night_n4 ;
+    :hasConcept :concept_date-entity ;
+    :hasVariable :variable_d .
+
+:leaf_distance-quantity_d2 a :AMR_Leaf ;
+    :edge_d2_l :leaf_light-year_l ;
+    :edge_d2_quant_26000 :value_26000 ;
+    :hasConcept :concept_distance-quantity ;
+    :hasVariable :variable_d2 .
 
-:leaf_out_o2 a :AMR_Leaf ;
-    :hasConcept :concept_out ;
-    :hasVariable :variable_o2 .
+:leaf_light-year_l a :AMR_Leaf ;
+    :hasConcept :concept_light-year ;
+    :hasVariable :variable_l .
+
+:leaf_night_n4 a :AMR_Leaf ;
+    :hasConcept :concept_night ;
+    :hasVariable :variable_n4 .
+
+:leaf_see-01_s4 a :AMR_Leaf ;
+    :edge_s4_s3 :leaf_star_s3 ;
+    :edge_s4_s5 :leaf_sky_s5 ;
+    :hasConcept :concept_see-01 ;
+    :hasVariable :variable_s4 .
+
+:leaf_sky_s5 a :AMR_Leaf ;
+    :edge_s5_d :leaf_date-entity_d ;
+    :hasConcept :concept_sky ;
+    :hasVariable :variable_s5 .
 
 :phenomena_modality a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena .
 
-:role_ARG1 a owl:Class,
+:role_name a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG1" .
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
 
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-<https://tenet.tetras-libre.fr/extract-result#pressure> a owl:Class ;
-    rdfs:label "pressure" ;
-    rdfs:subClassOf sys:Entity ;
-    sys:fromStructure "unknown" .
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
 net:Net_Structure a owl:Class ;
     rdfs:label "Semantic Net Structure" ;
     rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
 
-net:Restriction_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
-net:atomClass_medium_m a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_interstellar_ii ;
-    net:composeFrom net:atomProperty_medium_m ;
-    net:coverBaseNode :leaf_medium_m ;
-    net:coverNode :leaf_medium_m ;
-    net:hasClassName "medium" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "medium" ;
-    net:hasStructure "unknown" .
-
-net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_disc_d ;
-    :role_ARG1 net:atomClass_edge_e3 ;
-    net:coverBaseNode :leaf_hasPart_p9 ;
-    net:coverNode :leaf_hasPart_p9 ;
-    net:hasNaming "hasPart" ;
-    net:hasPropertyName "hasPart" ;
-    net:hasPropertyName01 "hasParting" ;
-    net:hasPropertyName10 "hasPart-by" ;
-    net:hasPropertyName12 "hasPart-of" ;
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s2 ;
+    :role_ARG2 net:atomClass_star_s3 ;
+    :role_ARG3 net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_disc_d,
-        :leaf_edge_e3 .
-
-net:atomProperty_medium_m a net:Atom_Property_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_interstellar_ii ;
-    net:coverBaseNode :leaf_medium_m ;
-    net:coverNode :leaf_medium_m ;
-    net:hasNaming "medium" ;
-    net:hasPropertyName "medium" ;
-    net:hasPropertyName01 "mediuming" ;
-    net:hasPropertyName10 "medium-by" ;
-    net:hasPropertyName12 "medium-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_interstellar_ii .
-
-net:atomProperty_pressure_p3 a net:Atom_Property_Net,
-        net:Deprecated_Net ;
-    :role_ARG0 net:atomClass_medium_m,
-        net:atomProperty_medium_m,
-        net:compositeClass_interstellar-medium_m ;
-    net:coverBaseNode :leaf_pressure-01_p3 ;
-    net:coverNode :leaf_pressure-01_p3 ;
-    net:hasNaming "pressure" ;
-    net:hasPropertyName "pressure" ;
-    net:hasPropertyName01 "pressureing" ;
-    net:hasPropertyName10 "pressure-by" ;
-    net:hasPropertyName12 "pressure-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_medium_m .
+    net:targetArgumentNode :leaf_most_m,
+        :leaf_star_s2,
+        :leaf_star_s3 .
 
 net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> a ns3:point ;
-    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_relative-position_r a :AMR_Leaf ;
+    :edge_r_c :leaf_center_c ;
+    :edge_r_d2 :leaf_distance-quantity_d2 ;
+    :hasConcept :concept_relative-position ;
+    :hasVariable :variable_r .
+
 sys:Undetermined_Thing a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
 
-net:atomClass_disc_d a net:Atom_Class_Net,
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_star_s2 a net:Atom_Class_Net,
         net:Class_Net,
         net:Deprecated_Net ;
-    net:coverBaseNode :leaf_disc_d ;
-    net:coverNode :leaf_disc_d ;
-    net:hasClassName "disc" ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_star_s2 ;
+    net:hasClassName "star" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "disc" ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_sun-wind_w a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_sun_s ;
-    net:composeFrom net:atomClass_sun_s,
-        net:atomClass_wind_w ;
-    net:coverBaseNode :leaf_wind_w ;
-    net:coverNode :leaf_sun_s,
-        :leaf_wind_w ;
-    net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_wind_w ;
-    net:hasNaming "sun-wind" ;
+    net:hasNaming "star" ;
     net:hasStructure "unknown" .
 
 net:typeProperty a owl:AnnotationProperty ;
     rdfs:label "type property" .
 
-ns1:Frame a ns1:Concept,
+ns3:Frame a ns3:Concept,
         owl:Class,
         owl:NamedIndividual ;
     rdfs:label "AMR-PropBank-Frame" ;
@@ -1386,73 +1531,31 @@ ns1:Frame a ns1:Concept,
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-:leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_d :leaf_disc_d ;
-    :edge_p9_ARG1_e3 :leaf_edge_e3 ;
-    :hasConcept :concept_part ;
-    :hasVariable :variable_p9 ;
-    :isReifiedLeaf true .
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
 
-:role_ARG0 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG0" .
+:leaf_center_c a :AMR_Leaf ;
+    :edge_c_a :leaf_arm_a ;
+    :hasConcept :concept_center ;
+    :hasVariable :variable_c .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :edge_ii_s2 :leaf_star_s2 ;
+    :edge_ii_s3 :leaf_star_s3 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
 
 sys:Out_Structure a owl:Class ;
     rdfs:label "Output Ontology Structure" .
 
-net:Composite_Class_Net a owl:Class ;
-    rdfs:subClassOf net:Class_Net .
-
-net:atomClass_edge_e3 a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_edge_e3 ;
-    net:coverNode :leaf_edge_e3 ;
-    net:hasClassName "edge" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "edge" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_point_p a net:Atom_Class_Net,
+net:atomClass_star_s3 a net:Atom_Class_Net,
         net:Class_Net ;
-    :role_domain net:atomClass_heliopause_h ;
-    net:coverBaseNode :leaf_point_p ;
-    net:coverNode :leaf_point_p ;
-    net:hasClassName "point" ;
+    net:coverBaseNode :leaf_star_s3 ;
+    net:coverNode :leaf_star_s3 ;
+    net:hasClassName "star" ;
     net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_heliopause_h ;
-    net:hasNaming "point" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_pressure_p2 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_ARG0 net:atomClass_wind_w,
-        net:compositeClass_sun-wind_w ;
-    net:composeFrom net:atomProperty_pressure_p2 ;
-    net:coverBaseNode :leaf_pressure-01_p2 ;
-    net:coverNode :leaf_pressure-01_p2 ;
-    net:hasClassName "pressure" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "pressure" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_pressure_p3 a net:Atom_Class_Net,
-        net:Class_Net ;
-    :role_ARG0 net:atomProperty_medium_m ;
-    net:composeFrom net:atomProperty_pressure_p3 ;
-    net:coverBaseNode :leaf_pressure-01_p3 ;
-    net:coverNode :leaf_pressure-01_p3 ;
-    net:hasClassName "pressure" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "pressure" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_sun_s a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_sun_s ;
-    net:coverNode :leaf_sun_s ;
-    net:hasClassName "sun" ;
-    net:hasNaming "sun" ;
+    net:hasNaming "star" ;
     net:hasStructure "unknown" .
 
 net:netProperty a owl:AnnotationProperty ;
@@ -1463,65 +1566,24 @@ net:netProperty a owl:AnnotationProperty ;
 
 :AMR_Structure a owl:Class .
 
-:leaf_sun_s a :AMR_Leaf ;
-    :hasConcept :concept_sun ;
+:leaf_galaxy_g a :AMR_Leaf ;
+    :edge_g_name_MilkyWay :value_MilkyWay ;
+    :hasConcept :concept_galaxy ;
+    :hasVariable :variable_g .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
     :hasVariable :variable_s .
 
-:leaf_wind_w a :AMR_Leaf ;
-    :edge_w_s :leaf_sun_s ;
-    :hasConcept :concept_wind ;
-    :hasVariable :variable_w .
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
 
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
-net:Relation a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
-
-net:atomClass_interstellar_ii a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_interstellar_ii ;
-    net:coverNode :leaf_interstellar_ii ;
-    net:hasClassName "interstellar" ;
-    net:hasNaming "interstellar" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_wind_w a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_sun_s ;
-    net:coverBaseNode :leaf_wind_w ;
-    net:coverNode :leaf_wind_w ;
-    net:hasClassName "wind" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "wind" ;
-    net:hasStructure "unknown" .
-
-net:atomProperty_equal_e a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_pressure_p2,
-        net:atomProperty_pressure_p2 ;
-    :role_ARG2 net:atomClass_point_p,
-        net:atomClass_pressure_p3,
-        net:atomProperty_pressure_p3 ;
-    net:coverBaseNode :leaf_equal-01_e ;
-    net:coverNode :leaf_equal-01_e ;
-    net:hasNaming "equal" ;
-    net:hasPropertyName "equal" ;
-    net:hasPropertyName01 "equaling" ;
-    net:hasPropertyName10 "equal-by" ;
-    net:hasPropertyName12 "equal-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_point_p,
-        :leaf_pressure-01_p2,
-        :leaf_pressure-01_p3 .
-
-ns21:FrameRole a ns1:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 rdf:Property a owl:Class .
 
 :AMR_Predicat_Concept a owl:Class ;
@@ -1530,52 +1592,42 @@ rdf:Property a owl:Class .
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:leaf_interstellar_ii a :AMR_Leaf ;
-    :hasConcept :concept_interstellar ;
-    :hasVariable :variable_ii .
-
-sys:Out_ObjectProperty a owl:ObjectProperty .
-
-net:Deprecated_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
-:AMR_Term_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
-:leaf_disc_d a :AMR_Leaf ;
-    :hasConcept :concept_disc ;
-    :hasVariable :variable_d .
+:leaf_arm_a a :AMR_Leaf ;
+    :edge_a_name_Orion :value_Orion ;
+    :hasConcept :concept_arm ;
+    :hasVariable :variable_a .
 
-:leaf_edge_e3 a :AMR_Leaf ;
-    :hasConcept :concept_edge ;
-    :hasVariable :variable_e3 .
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
 
-:leaf_equal-01_e a :AMR_Leaf ;
-    :edge_e_p :leaf_point_p ;
-    :edge_e_p2 :leaf_pressure-01_p2 ;
-    :edge_e_p3 :leaf_pressure-01_p3 ;
-    :hasConcept :concept_equal-01 ;
-    :hasVariable :variable_e .
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
 
-:leaf_medium_m a :AMR_Leaf ;
-    :edge_m_ii :leaf_interstellar_ii ;
-    :hasConcept :concept_medium ;
-    :hasVariable :variable_m .
+:leaf_star_s2 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s2 .
 
-net:Atom_Property_Net a owl:Class ;
-    rdfs:subClassOf net:Property_Net .
+:leaf_star_s3 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s3 .
 
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
 
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:leaf_point_p a :AMR_Leaf ;
-    :edge_p_h :leaf_heliopause_h ;
-    :hasConcept :concept_point ;
-    :hasVariable :variable_p .
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
@@ -1585,38 +1637,28 @@ net:Net a owl:Class ;
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:leaf_pressure-01_p2 a :AMR_Leaf ;
-    :edge_p2_w :leaf_wind_w ;
-    :hasConcept :concept_pressure-01 ;
-    :hasVariable :variable_p2 .
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
-:leaf_pressure-01_p3 a :AMR_Leaf ;
-    :edge_p3_m :leaf_medium_m ;
-    :hasConcept :concept_pressure-01 ;
-    :hasVariable :variable_p3 .
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
 
 net:Atom_Class_Net a owl:Class ;
     rdfs:subClassOf net:Class_Net .
 
-net:Class_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
-:AMR_Variable a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-sys:Entity a owl:Class ;
-    rdfs:subClassOf sys:Out_Structure .
-
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
     rdfs:subPropertyOf net:objectProperty .
 
-:AMR_Edge a owl:Class ;
-    rdfs:subClassOf :AMR_Structure .
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
 
 :AMR_Leaf a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
 :AMR_Linked_Data a owl:Class .
 
 [] a owl:AllDisjointClasses ;
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
index 595555746604e98f26d29b719fb5f53a3b4b14b5..fb97e90f33b1664861c70ede23d2a17a0e3e3a36 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -1,67 +1,72 @@
 @prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
 @prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
 @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
-@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
-@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
-@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 @prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
-ns1:Concept a rdfs:Class,
+ns3:Concept a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Concept" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:Role a rdfs:Class,
+ns3:Role a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Role" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
-    ns1:hasSentence "The sun is a star." ;
-    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
 
-<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
-    ns1:hasSentence "Earth is a planet." ;
-    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns21:equal-01.ARG1 a ns21:FrameRole .
+ns2:be-located-at-91.ARG1 a ns2:FrameRole .
 
-ns21:equal-01.ARG2 a ns21:FrameRole .
+ns2:be-located-at-91.ARG2 a ns2:FrameRole .
 
-ns21:extend-01.ARG0 a ns21:FrameRole .
+ns2:contain-01.ARG0 a ns2:FrameRole .
 
-ns21:extend-01.ARG4 a ns21:FrameRole .
+ns2:contain-01.ARG1 a ns2:FrameRole .
 
-ns21:oppose-01.ARG0 a ns21:FrameRole .
+ns2:include-91.ARG1 a ns2:FrameRole .
 
-ns21:pressure-01.ARG0 a ns21:FrameRole .
+ns2:include-91.ARG2 a ns2:FrameRole .
 
-ns21:scatter-01.ARG1 a ns21:FrameRole .
+ns2:include-91.ARG3 a ns2:FrameRole .
 
-ns3:direction a ns1:Role .
+ns2:possible-01.ARG1 a ns2:FrameRole .
 
-ns3:domain a ns1:Role,
+ns2:see-01.ARG1 a ns2:FrameRole .
+
+ns11:dayperiod a ns3:Role .
+
+ns11:domain a ns3:Role,
         owl:AnnotationProperty,
         owl:NamedIndividual .
 
-ns3:mod a ns1:Role .
+ns11:location a ns3:Role .
 
-ns1:NamedEntity a ns1:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-EntityType",
-        "AMR-Term" ;
-    rdfs:subClassOf :AMR_Linked_Data .
+ns11:op1 a ns3:Role .
 
-ns1:hasID a owl:AnnotationProperty .
+ns11:quant a ns3:Role .
 
-ns1:hasSentence a owl:AnnotationProperty .
+ns11:time a ns3:Role .
 
-ns1:root a owl:AnnotationProperty .
+ns11:unit a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
 
 <https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
     owl:versionIRI :0.1 .
@@ -71,70 +76,91 @@ ns1:root a owl:AnnotationProperty .
 :AMR_Prep_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Root a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:edge_e2_e3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG4 ;
-    :hasRoleID "ARG4" .
+:edge_a_name_Orion a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_b_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
 
-:edge_e2_o2 a :AMR_Edge ;
-    :hasRoleID "direction" .
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
 
-:edge_e2_p a :AMR_Edge ;
+:edge_c2_a a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_e_p a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
-
-:edge_e_p2 a :AMR_Edge ;
+:edge_c2_s2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_e_p3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
+:edge_c_a a :AMR_Edge ;
+    :hasRoleID "location" .
 
-:edge_m_ii a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_d2_l a :AMR_Edge ;
+    :hasRoleID "unit" .
 
-:edge_o_p3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_d2_quant_26000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_p2_w a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_d_n4 a :AMR_Edge ;
+    :hasRoleID "dayperiod" .
 
-:edge_p3_m a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_g_name_MilkyWay a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_ii_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
 
-:edge_p9_ARG0_d a :AMR_Edge ;
+:edge_p9_ARG0_g a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_p9_ARG1_e3 a :AMR_Edge ;
+:edge_p9_ARG1_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_s4 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_p_h a :AMR_Edge ;
-    :hasAmrRole :role_domain ;
-    :hasRoleID "domain" .
+:edge_r_c a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
 
-:edge_s2_d a :AMR_Edge ;
+:edge_r_d2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_s4_s3 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_w_s a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_s4_s5 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_s5_d a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
 :fromAmrLkFramerole a owl:AnnotationProperty ;
     rdfs:subPropertyOf :fromAmrLk .
@@ -208,36 +234,30 @@ ns1:root a owl:AnnotationProperty .
 :label a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_equal-01_e a :AMR_Leaf ;
-    :edge_e_p :leaf_point_p ;
-    :edge_e_p2 :leaf_pressure-01_p2 ;
-    :edge_e_p3 :leaf_pressure-01_p3 ;
-    :hasConcept :concept_equal-01 ;
-    :hasVariable :variable_e .
-
-:leaf_extend-01_e2 a :AMR_Leaf ;
-    :edge_e2_e3 :leaf_edge_e3 ;
-    :edge_e2_o2 :leaf_out_o2 ;
-    :edge_e2_p :leaf_point_p ;
-    :hasConcept :concept_extend-01 ;
-    :hasVariable :variable_e2 .
+:leaf_contain-01_c2 a :AMR_Leaf ;
+    :edge_c2_a :leaf_arm_a ;
+    :edge_c2_s2 :leaf_star_s2 ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c2 .
 
 :leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_d :leaf_disc_d ;
-    :edge_p9_ARG1_e3 :leaf_edge_e3 ;
+    :edge_p9_ARG0_g :leaf_galaxy_g ;
+    :edge_p9_ARG1_c :leaf_center_c ;
     :hasConcept :concept_part ;
     :hasVariable :variable_p9 ;
     :isReifiedLeaf true .
 
-:leaf_oppose-01_o a :AMR_Leaf ;
-    :edge_o_p3 :leaf_pressure-01_p3 ;
-    :hasConcept :concept_oppose-01 ;
-    :hasVariable :variable_o .
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :edge_ii_s2 :leaf_star_s2 ;
+    :edge_ii_s3 :leaf_star_s3 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
 
-:leaf_scatter-01_s2 a :AMR_Leaf ;
-    :edge_s2_d :leaf_disc_d ;
-    :hasConcept :concept_scatter-01 ;
-    :hasVariable :variable_s2 .
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_s4 :leaf_see-01_s4 ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
 
 :phenomena_conjunction_and a owl:Class ;
     rdfs:subClassOf :phenomena_conjunction ;
@@ -259,15 +279,6 @@ ns1:root a owl:AnnotationProperty .
     :hasConceptLink "obligate-01" ;
     :label "obligation-modality" .
 
-:phenomena_modality_possible a owl:Class ;
-    rdfs:subClassOf :phenomena_modality ;
-    :hasConceptLink "allow-01",
-        "grant-01",
-        "likely-01",
-        "permit-01",
-        "possible-01" ;
-    :label "possible-modality" .
-
 :phenomena_modality_prohibition a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "prohibit-01" ;
@@ -314,9 +325,9 @@ ns1:root a owl:AnnotationProperty .
     :hasReification false ;
     :hasRelationName "quant" .
 
-:role_ARG3 a owl:Class ;
+:role_ARG4 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG3" .
+    :label "ARG4" .
 
 :role_ARG5 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
@@ -338,6 +349,14 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG9" .
 
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
 :role_have-degree-91 a owl:Class ;
     rdfs:subClassOf :AMR_Specific_Role ;
     :getPropertyType <net:specificProperty> .
@@ -351,13 +370,15 @@ ns1:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
-:role_name a owl:Class ;
+:role_mod a owl:Class ;
     rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
-
-:role_op1 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
 
 :role_op2 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
@@ -404,15 +425,11 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:role_quant a owl:Class ;
-    rdfs:subClassOf :AMR_Specific_Role ;
-    :label "quant" .
-
-:root_WikiAbstract-SolarSystem-20 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> ;
-    :hasRootLeaf :leaf_point_p ;
-    :hasSentenceID "WikiAbstract-SolarSystem-20" ;
-    :hasSentenceStatement "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." .
+:root_WikiAbstract-SolarSystem-22 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> ;
+    :hasRootLeaf :leaf_be-located-at-91_b ;
+    :hasSentenceID "WikiAbstract-SolarSystem-22" ;
+    :hasSentenceStatement "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -664,205 +681,282 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> a ns21:equal-01 ;
-    ns21:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
-    ns21:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p>,
-        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> a ns2:contain-01 ;
+    ns2:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    ns2:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> a ns21:extend-01 ;
-    ns21:extend-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
-    ns21:extend-01.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
-    ns3:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> a ns11:galaxy ;
+    rdfs:label "Milky Way" ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> a ns21:oppose-01 ;
-    ns21:oppose-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> a ns2:include-91 ;
+    ns2:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    ns2:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns2:include-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> a ns1:AMR ;
-    ns1:has-id "WikiAbstract-SolarSystem-20" ;
-    ns1:has-sentence "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." ;
-    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> .
-
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> a ns21:scatter-01 ;
-    ns21:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> a ns2:possible-01 ;
+    ns2:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-22" ;
+    ns3:has-sentence "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
 <http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
 
-ns1:AMR a owl:Class ;
+ns3:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_Value a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
-:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:disc ;
-    :label "disc" .
+:concept_arm rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:arm ;
+    :label "arm" .
 
-:concept_edge rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:edge ;
-    :label "edge" .
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:be-located-at-91 ;
+    :label "be-located-at-91" .
 
-:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:equal-01 ;
-    :label "equal-01" .
+:concept_center rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:center ;
+    :label "center" .
 
-:concept_extend-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:extend-01 ;
-    :label "extend-01" .
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:contain-01 ;
+    :label "contain-01" .
 
-:concept_heliopause rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:heliopause ;
-    :label "heliopause" .
+:concept_date-entity rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:date-entity ;
+    :label "date-entity" .
 
-:concept_interstellar rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:interstellar ;
-    :label "interstellar" .
+:concept_distance-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:distance-quantity ;
+    :label "distance-quantity" .
 
-:concept_medium rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns1:medium ;
-    :label "medium" .
+:concept_galaxy rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:galaxy ;
+    :label "galaxy" .
 
-:concept_oppose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:oppose-01 ;
-    :label "oppose-01" .
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:include-91 ;
+    :label "include-91" .
 
-:concept_out rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:out ;
-    :label "out" .
+:concept_light-year rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:light-year ;
+    :label "light-year" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_night rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:night ;
+    :label "night" .
 
 :concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:part ;
+    :fromAmrLk ns11:part ;
     :isReifiedConcept true ;
     :label "hasPart" .
 
-:concept_point rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:point ;
-    :label "point" .
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
 
-:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:scatter-01 ;
-    :label "scatter-01" .
+:concept_relative-position rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:relative-position ;
+    :label "relative-position" .
 
-:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:sun ;
-    :label "sun" .
+:concept_see-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:see-01 ;
+    :label "see-01" .
 
-:concept_wind rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:wind ;
-    :label "wind" .
+:concept_sky rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sky ;
+    :label "sky" .
 
-:leaf_heliopause_h a :AMR_Leaf ;
-    :hasConcept :concept_heliopause ;
-    :hasVariable :variable_h .
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:system ;
+    :label "system" .
 
-:leaf_interstellar_ii a :AMR_Leaf ;
-    :hasConcept :concept_interstellar ;
-    :hasVariable :variable_ii .
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_r :leaf_relative-position_r ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
 
-:leaf_medium_m a :AMR_Leaf ;
-    :edge_m_ii :leaf_interstellar_ii ;
-    :hasConcept :concept_medium ;
-    :hasVariable :variable_m .
+:leaf_date-entity_d a :AMR_Leaf ;
+    :edge_d_n4 :leaf_night_n4 ;
+    :hasConcept :concept_date-entity ;
+    :hasVariable :variable_d .
+
+:leaf_distance-quantity_d2 a :AMR_Leaf ;
+    :edge_d2_l :leaf_light-year_l ;
+    :edge_d2_quant_26000 :value_26000 ;
+    :hasConcept :concept_distance-quantity ;
+    :hasVariable :variable_d2 .
 
-:leaf_out_o2 a :AMR_Leaf ;
-    :hasConcept :concept_out ;
-    :hasVariable :variable_o2 .
+:leaf_galaxy_g a :AMR_Leaf ;
+    :edge_g_name_MilkyWay :value_MilkyWay ;
+    :hasConcept :concept_galaxy ;
+    :hasVariable :variable_g .
 
-:leaf_pressure-01_p2 a :AMR_Leaf ;
-    :edge_p2_w :leaf_wind_w ;
-    :hasConcept :concept_pressure-01 ;
-    :hasVariable :variable_p2 .
+:leaf_light-year_l a :AMR_Leaf ;
+    :hasConcept :concept_light-year ;
+    :hasVariable :variable_l .
 
-:leaf_sun_s a :AMR_Leaf ;
-    :hasConcept :concept_sun ;
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_night_n4 a :AMR_Leaf ;
+    :hasConcept :concept_night ;
+    :hasVariable :variable_n4 .
+
+:leaf_relative-position_r a :AMR_Leaf ;
+    :edge_r_c :leaf_center_c ;
+    :edge_r_d2 :leaf_distance-quantity_d2 ;
+    :hasConcept :concept_relative-position ;
+    :hasVariable :variable_r .
+
+:leaf_see-01_s4 a :AMR_Leaf ;
+    :edge_s4_s3 :leaf_star_s3 ;
+    :edge_s4_s5 :leaf_sky_s5 ;
+    :hasConcept :concept_see-01 ;
+    :hasVariable :variable_s4 .
+
+:leaf_sky_s5 a :AMR_Leaf ;
+    :edge_s5_d :leaf_date-entity_d ;
+    :hasConcept :concept_sky ;
+    :hasVariable :variable_s5 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
     :hasVariable :variable_s .
 
-:leaf_wind_w a :AMR_Leaf ;
-    :edge_w_s :leaf_sun_s ;
-    :hasConcept :concept_wind ;
-    :hasVariable :variable_w .
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
 
-:role_ARG4 a owl:Class ;
+:role_ARG3 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG4" .
+    :label "ARG3" .
 
-:role_domain a owl:Class ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :hasRelationName "domain" ;
-    :label "domain" ;
-    :toReifyAsConcept "domain" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
 
-:variable_d a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
-    :label "d" .
+:value_26000 a :AMR_Value ;
+    rdfs:label "26000" .
+
+:value_MilkyWay a :AMR_Value ;
+    rdfs:label "MilkyWay" .
+
+:value_Orion a :AMR_Value ;
+    rdfs:label "Orion" .
 
-:variable_e a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> ;
-    :label "e" .
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
 
-:variable_e2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> ;
-    :label "e2" .
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    :label "a" ;
+    :name "Orion" .
 
-:variable_e3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
-    :label "e3" .
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> ;
+    :label "b" .
 
-:variable_h a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
-    :label "h" .
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> ;
+    :label "g" ;
+    :name "Milky Way" .
 
 :variable_ii a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> ;
     :label "ii" .
 
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    :label "l" .
+
 :variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
     :label "m" .
 
-:variable_o a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> ;
-    :label "o" .
-
-:variable_o2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
-    :label "o2" .
+:variable_n4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    :label "n4" .
 
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> ;
     :label "p" .
 
-:variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
-    :label "p2" .
-
-:variable_p3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
-    :label "p3" .
-
-:variable_p9 a ns3:part,
+:variable_p9 a ns11:part,
         :AMR_Variable ;
     :isReifiedVariable true ;
     :label "p9" .
 
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    :label "r" .
+
 :variable_s a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
-    :label "s" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    :label "s" ;
+    :name "Solar System" .
 
 :variable_s2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
     :label "s2" .
 
-:variable_w a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
-    :label "w" .
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
+    :label "s4" .
+
+:variable_s5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
+    :label "s5" .
 
 sys:Degree a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
@@ -888,95 +982,122 @@ net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> a ns3:disc ;
-    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> a ns2:be-located-at-91 ;
+    ns2:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    ns2:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> a ns3:date-entity ;
+    ns11:dayperiod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> a ns11:distance-quantity ;
+    ns11:quant "26000" ;
+    ns11:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> a ns3:heliopause ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> a ns11:light-year ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> a ns3:interstellar ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> a ns3:most ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> a ns1:medium ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> a ns11:night ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> a ns3:out ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> a ns11:relative-position ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    ns11:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> a ns21:pressure-01 ;
-    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> a ns11:system ;
+    rdfs:label "Solar System" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> a ns3:sun ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> a ns2:see-01 ;
+    ns2:see-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> a ns3:wind ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> a ns11:sky ;
+    ns11:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:equal-01 a ns1:Frame ;
+ns2:be-located-at-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:extend-01 a ns1:Frame ;
+ns2:contain-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:oppose-01 a ns1:Frame ;
+ns2:include-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:scatter-01 a ns1:Frame ;
+ns2:possible-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:disc a ns1:Concept ;
+ns2:see-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:edge a ns1:Concept ;
+ns11:arm a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:heliopause a ns1:Concept ;
+ns11:center a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:interstellar a ns1:Concept ;
+ns11:distance-quantity a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:out a ns1:Concept ;
+ns11:galaxy a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:part a ns1:Role ;
+ns11:light-year a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:point a ns1:Concept ;
+ns11:night a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:sun a ns1:Concept ;
+ns11:part a ns3:Role ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:wind a ns1:Concept ;
+ns11:relative-position a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:medium a ns1:Concept ;
+ns11:sky a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_pressure-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:pressure-01 ;
-    :label "pressure-01" .
+ns11:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:date-entity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_star rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#star> ;
+    :label "star" .
 
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_disc_d a :AMR_Leaf ;
-    :hasConcept :concept_disc ;
-    :hasVariable :variable_d .
+:leaf_arm_a a :AMR_Leaf ;
+    :edge_a_name_Orion :value_Orion ;
+    :hasConcept :concept_arm ;
+    :hasVariable :variable_a .
 
-:leaf_edge_e3 a :AMR_Leaf ;
-    :hasConcept :concept_edge ;
-    :hasVariable :variable_e3 .
+:leaf_center_c a :AMR_Leaf ;
+    :edge_c_a :leaf_arm_a ;
+    :hasConcept :concept_center ;
+    :hasVariable :variable_c .
 
-:leaf_pressure-01_p3 a :AMR_Leaf ;
-    :edge_p3_m :leaf_medium_m ;
-    :hasConcept :concept_pressure-01 ;
-    :hasVariable :variable_p3 .
+:leaf_star_s2 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s2 .
+
+:leaf_star_s3 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s3 .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -985,19 +1106,17 @@ ns1:medium a ns1:Concept ;
         "neither" ;
     :label "conjunction" .
 
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
 :role_ARG2 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG2" .
 
-:role_mod a owl:Class ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :getDirectPropertyName "hasFeature"^^xsd:string ;
-    :getPropertyType rdfs:subClassOf,
-        owl:ObjectProperty ;
-    :label "mod" ;
-    :toReifyAsConcept "mod" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
 
 sys:Out_ObjectProperty a owl:ObjectProperty .
 
@@ -1010,14 +1129,21 @@ net:Property_Net a owl:Class ;
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> a ns3:edge ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> a ns11:arm ;
+    rdfs:label "Orion" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> a ns11:center ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> a ns21:pressure-01 ;
-    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> a <http://amr.isi.edu/entity-types#star> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:pressure-01 a ns1:Frame ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#star> a ns3:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1039,17 +1165,12 @@ ns21:pressure-01 a ns1:Frame ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_point_p a :AMR_Leaf ;
-    :edge_p_h :leaf_heliopause_h ;
-    :hasConcept :concept_point ;
-    :hasVariable :variable_p .
-
 :phenomena_modality a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena .
 
-:role_ARG1 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG1" .
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
 
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
@@ -1062,17 +1183,13 @@ net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> a ns3:point ;
-    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
 net:typeProperty a owl:AnnotationProperty ;
     rdfs:label "type property" .
 
-ns1:Frame a ns1:Concept,
+ns3:Frame a ns3:Concept,
         owl:Class,
         owl:NamedIndividual ;
     rdfs:label "AMR-PropBank-Frame" ;
@@ -1084,9 +1201,8 @@ ns1:Frame a ns1:Concept,
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-:role_ARG0 a owl:Class ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG0" .
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
 
 sys:Out_Structure a owl:Class ;
     rdfs:label "Output Ontology Structure" .
@@ -1099,15 +1215,13 @@ net:netProperty a owl:AnnotationProperty ;
 
 :AMR_Structure a owl:Class .
 
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
-ns21:FrameRole a ns1:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 rdf:Property a owl:Class .
 
 :AMR_Predicat_Concept a owl:Class ;
@@ -1116,13 +1230,16 @@ rdf:Property a owl:Class .
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:AMR_Term_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
 
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
@@ -1134,19 +1251,22 @@ net:Net a owl:Class ;
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:AMR_Variable a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
     rdfs:subPropertyOf net:objectProperty .
 
-:AMR_Edge a owl:Class ;
-    rdfs:subClassOf :AMR_Structure .
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
 
 :AMR_Leaf a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
 :AMR_Linked_Data a owl:Class .
 
 [] a owl:AllDisjointClasses ;
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
index bff7a330323c9336cae7ac424b7ad4eb3b21bee8..b249246654a70d83f3d1bd07a52e9e1d5a437c86 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -1,67 +1,72 @@
 @prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
 @prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
 @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
-@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
-@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
-@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 @prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
-ns1:Concept a rdfs:Class,
+ns3:Concept a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Concept" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:Role a rdfs:Class,
+ns3:Role a rdfs:Class,
         owl:Class ;
     rdfs:label "AMR-Role" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
-    ns1:hasSentence "The sun is a star." ;
-    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
 
-<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
-    ns1:hasSentence "Earth is a planet." ;
-    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
 
-ns21:equal-01.ARG1 a ns21:FrameRole .
+ns2:be-located-at-91.ARG1 a ns2:FrameRole .
 
-ns21:equal-01.ARG2 a ns21:FrameRole .
+ns2:be-located-at-91.ARG2 a ns2:FrameRole .
 
-ns21:extend-01.ARG0 a ns21:FrameRole .
+ns2:contain-01.ARG0 a ns2:FrameRole .
 
-ns21:extend-01.ARG4 a ns21:FrameRole .
+ns2:contain-01.ARG1 a ns2:FrameRole .
 
-ns21:oppose-01.ARG0 a ns21:FrameRole .
+ns2:include-91.ARG1 a ns2:FrameRole .
 
-ns21:pressure-01.ARG0 a ns21:FrameRole .
+ns2:include-91.ARG2 a ns2:FrameRole .
 
-ns21:scatter-01.ARG1 a ns21:FrameRole .
+ns2:include-91.ARG3 a ns2:FrameRole .
 
-ns3:direction a ns1:Role .
+ns2:possible-01.ARG1 a ns2:FrameRole .
 
-ns3:domain a ns1:Role,
+ns2:see-01.ARG1 a ns2:FrameRole .
+
+ns11:dayperiod a ns3:Role .
+
+ns11:domain a ns3:Role,
         owl:AnnotationProperty,
         owl:NamedIndividual .
 
-ns3:mod a ns1:Role .
+ns11:location a ns3:Role .
 
-ns1:NamedEntity a ns1:Concept,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-EntityType",
-        "AMR-Term" ;
-    rdfs:subClassOf :AMR_Linked_Data .
+ns11:op1 a ns3:Role .
 
-ns1:hasID a owl:AnnotationProperty .
+ns11:quant a ns3:Role .
 
-ns1:hasSentence a owl:AnnotationProperty .
+ns11:time a ns3:Role .
 
-ns1:root a owl:AnnotationProperty .
+ns11:unit a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
 
 <https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
     owl:versionIRI :0.1 .
@@ -71,70 +76,91 @@ ns1:root a owl:AnnotationProperty .
 :AMR_Prep_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:AMR_Relation_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
 :AMR_Root a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:edge_e2_e3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG4 ;
-    :hasRoleID "ARG4" .
+:edge_a_name_Orion a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_e2_o2 a :AMR_Edge ;
-    :hasRoleID "direction" .
+:edge_b_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
 
-:edge_e2_p a :AMR_Edge ;
+:edge_c2_a a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_e_p a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
-
-:edge_e_p2 a :AMR_Edge ;
+:edge_c2_s2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_e_p3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG2 ;
-    :hasRoleID "ARG2" .
+:edge_c_a a :AMR_Edge ;
+    :hasRoleID "location" .
 
-:edge_m_ii a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_d2_l a :AMR_Edge ;
+    :hasRoleID "unit" .
 
-:edge_o_p3 a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_d2_quant_26000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
 
-:edge_p2_w a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_d_n4 a :AMR_Edge ;
+    :hasRoleID "dayperiod" .
 
-:edge_p3_m a :AMR_Edge ;
-    :hasAmrRole :role_ARG0 ;
-    :hasRoleID "ARG0" .
+:edge_g_name_MilkyWay a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
-:edge_p9_ARG0_d a :AMR_Edge ;
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_ii_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p9_ARG0_g a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_p9_ARG1_e3 a :AMR_Edge ;
+:edge_p9_ARG1_c a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_p_h a :AMR_Edge ;
-    :hasAmrRole :role_domain ;
-    :hasRoleID "domain" .
+:edge_p_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
 
-:edge_s2_d a :AMR_Edge ;
+:edge_r_c a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_r_d2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_s4_s3 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_w_s a :AMR_Edge ;
-    :hasAmrRole :role_mod ;
-    :hasRoleID "mod" .
+:edge_s4_s5 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_s5_d a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
 
 :fromAmrLkFramerole a owl:AnnotationProperty ;
     rdfs:subPropertyOf :fromAmrLk .
@@ -228,15 +254,6 @@ ns1:root a owl:AnnotationProperty .
     :hasConceptLink "obligate-01" ;
     :label "obligation-modality" .
 
-:phenomena_modality_possible a owl:Class ;
-    rdfs:subClassOf :phenomena_modality ;
-    :hasConceptLink "allow-01",
-        "grant-01",
-        "likely-01",
-        "permit-01",
-        "possible-01" ;
-    :label "possible-modality" .
-
 :phenomena_modality_prohibition a owl:Class ;
     rdfs:subClassOf :phenomena_modality ;
     :hasConceptLink "prohibit-01" ;
@@ -283,9 +300,9 @@ ns1:root a owl:AnnotationProperty .
     :hasReification false ;
     :hasRelationName "quant" .
 
-:role_ARG3 a owl:Class ;
+:role_ARG4 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG3" .
+    :label "ARG4" .
 
 :role_ARG5 a owl:Class ;
     rdfs:subClassOf :AMR_Core_Role ;
@@ -307,6 +324,14 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG9" .
 
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
 :role_have-degree-91 a owl:Class ;
     rdfs:subClassOf :AMR_Specific_Role ;
     :getPropertyType <net:specificProperty> .
@@ -320,13 +345,15 @@ ns1:root a owl:AnnotationProperty .
     :toReifyWithBaseEdge "ARG0" ;
     :toReifyWithHeadEdge "ARG1" .
 
-:role_name a owl:Class ;
+:role_mod a owl:Class ;
     rdfs:subClassOf :AMR_NonCore_Role ;
-    :label "name" .
-
-:role_op1 a owl:Class ;
-    rdfs:subClassOf :AMR_Op_Role ;
-    :label "op1" .
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
 
 :role_op2 a owl:Class ;
     rdfs:subClassOf :AMR_Op_Role ;
@@ -373,15 +400,11 @@ ns1:root a owl:AnnotationProperty .
     rdfs:subClassOf :AMR_Specific_Role ;
     :label "polarity" .
 
-:role_quant a owl:Class ;
-    rdfs:subClassOf :AMR_Specific_Role ;
-    :label "quant" .
-
-:root_WikiAbstract-SolarSystem-20 a :AMR_Value ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> ;
-    :hasRootLeaf :leaf_point_p ;
-    :hasSentenceID "WikiAbstract-SolarSystem-20" ;
-    :hasSentenceStatement "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." .
+:root_WikiAbstract-SolarSystem-22 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> ;
+    :hasRootLeaf :leaf_be-located-at-91_b ;
+    :hasSentenceID "WikiAbstract-SolarSystem-22" ;
+    :hasSentenceStatement "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." .
 
 :toReifyAsConcept a owl:AnnotationProperty ;
     rdfs:subPropertyOf :toReify .
@@ -457,123 +480,119 @@ net:Composite_Property_Net a owl:Class ;
 net:Logical_Set_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:Phenomena_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
 net:Property_Axiom_Net a owl:Class ;
     rdfs:subClassOf net:Axiom_Net .
 
 net:Property_Direction a owl:Class ;
     rdfs:subClassOf net:Feature .
 
-net:Value_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
 net:abstractionClass a owl:AnnotationProperty ;
     rdfs:label "abstraction class" ;
     rdfs:subPropertyOf net:objectValue .
 
-net:atomClass_out_o2 a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_out_o2 ;
-    net:coverNode :leaf_out_o2 ;
-    net:hasClassName "out" ;
-    net:hasNaming "out" ;
+net:atomClass_light-year_l a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_light-year_l ;
+    net:coverNode :leaf_light-year_l ;
+    net:hasClassName "light-year" ;
+    net:hasNaming "light-year" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_night_n4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_night_n4 ;
+    net:coverNode :leaf_night_n4 ;
+    net:hasClassName "night" ;
+    net:hasNaming "night" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sky_s5 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sky_s5 ;
+    net:coverNode :leaf_sky_s5 ;
+    net:hasClassName "sky" ;
+    net:hasNaming "sky" ;
     net:hasStructure "unknown" .
 
 net:atomOf a owl:AnnotationProperty ;
     rdfs:label "atom of" ;
     rdfs:subPropertyOf net:typeProperty .
 
-net:atomProperty_extend_e2 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_point_p ;
-    :role_ARG4 net:atomClass_edge_e3 ;
-    net:coverBaseNode :leaf_extend-01_e2 ;
-    net:coverNode :leaf_extend-01_e2 ;
-    net:hasNaming "extend" ;
-    net:hasPropertyName "extend" ;
-    net:hasPropertyName01 "extending" ;
-    net:hasPropertyName10 "extend-by" ;
-    net:hasPropertyName12 "extend-of" ;
+net:atomProperty_be_b a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG2 net:atomClass_relative-position_r ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b ;
+    net:hasNaming "be" ;
+    net:hasPropertyName "be" ;
+    net:hasPropertyName01 "being" ;
+    net:hasPropertyName10 "be-by" ;
+    net:hasPropertyName12 "be-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_edge_e3,
-        :leaf_point_p .
-
-net:atomProperty_oppose_o a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_pressure_p3,
-        net:atomProperty_pressure_p3 ;
-    net:coverBaseNode :leaf_oppose-01_o ;
-    net:coverNode :leaf_oppose-01_o ;
-    net:hasNaming "oppose" ;
-    net:hasPropertyName "oppose" ;
-    net:hasPropertyName01 "opposeing" ;
-    net:hasPropertyName10 "oppose-by" ;
-    net:hasPropertyName12 "oppose-of" ;
+    net:targetArgumentNode :leaf_relative-position_r,
+        :leaf_system_s .
+
+net:atomProperty_contain_c2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_arm_a,
+        net:individual_Orion_a ;
+    :role_ARG1 net:atomClass_star_s2 ;
+    net:coverBaseNode :leaf_contain-01_c2 ;
+    net:coverNode :leaf_contain-01_c2 ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_pressure-01_p3 .
-
-net:atomProperty_scatter_s2 a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_disc_d ;
-    net:coverBaseNode :leaf_scatter-01_s2 ;
-    net:coverNode :leaf_scatter-01_s2 ;
-    net:hasNaming "scatter" ;
-    net:hasPropertyName "scatter" ;
-    net:hasPropertyName01 "scattering" ;
-    net:hasPropertyName10 "scatter-by" ;
-    net:hasPropertyName12 "scatter-of" ;
+    net:targetArgumentNode :leaf_arm_a,
+        :leaf_star_s2 .
+
+net:atomProperty_date_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_date-entity_d ;
+    net:coverNode :leaf_date-entity_d ;
+    net:hasNaming "date" ;
+    net:hasPropertyName "date" ;
+    net:hasPropertyName01 "dateing" ;
+    net:hasPropertyName10 "date-by" ;
+    net:hasPropertyName12 "date-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_galaxy_g,
+        net:individual_MilkyWay_g ;
+    :role_ARG1 net:atomClass_center_c ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_disc_d .
+    net:targetArgumentNode :leaf_center_c,
+        :leaf_galaxy_g .
 
 net:atomType a owl:AnnotationProperty ;
     rdfs:label "atom type" ;
     rdfs:subPropertyOf net:objectType .
 
-net:compositeClass_disc-hasPart-edge_d a net:Composite_Class_Net ;
-    net:composeFrom net:atomClass_disc_d,
-        net:atomClass_edge_e3,
-        net:atomProperty_hasPart_p9 ;
-    net:coverBaseNode :leaf_disc_d ;
-    net:coverNode :leaf_disc_d,
-        :leaf_edge_e3,
-        :leaf_hasPart_p9 ;
-    net:hasMotherClassNet net:atomClass_disc_d ;
-    net:hasNaming "disc-hasPart-edge" ;
-    net:hasRestriction net:restriction_hasPart-edge_p9 ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_pressure-equal-point_p2 a net:Composite_Class_Net ;
-    :role_ARG0 net:atomClass_wind_w,
-        net:compositeClass_sun-wind_w ;
-    net:composeFrom net:atomClass_point_p,
-        net:atomClass_pressure_p2,
-        net:atomProperty_equal_e ;
-    net:coverBaseNode :leaf_pressure-01_p2 ;
-    net:coverNode :leaf_equal-01_e,
-        :leaf_point_p,
-        :leaf_pressure-01_p2 ;
-    net:hasMotherClassNet net:atomClass_pressure_p2 ;
-    net:hasNaming "pressure-equal-point" ;
-    net:hasRestriction net:restriction_equal-point_e ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_pressure-equal-pressure_p2 a net:Composite_Class_Net ;
-    :role_ARG0 net:atomClass_wind_w,
-        net:compositeClass_sun-wind_w ;
-    net:composeFrom net:atomClass_pressure_p2,
-        net:atomClass_pressure_p3,
-        net:atomProperty_equal_e ;
-    net:coverBaseNode :leaf_pressure-01_p2 ;
-    net:coverNode :leaf_equal-01_e,
-        :leaf_pressure-01_p2,
-        :leaf_pressure-01_p3 ;
-    net:hasMotherClassNet net:atomClass_pressure_p2 ;
-    net:hasNaming "pressure-equal-pressure" ;
-    net:hasRestriction net:restriction_equal-pressure_e ;
+net:compositeClass_star-include-star_s2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_star_s2,
+        net:atomClass_star_s3,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_star_s2,
+        :leaf_star_s3 ;
+    net:hasMotherClassNet net:atomClass_star_s2 ;
+    net:hasNaming "star-include-star" ;
+    net:hasRestriction net:restriction_include-star_ii ;
     net:hasStructure "unknown" .
 
 net:entityClass a owl:AnnotationProperty ;
@@ -671,26 +690,6 @@ net:has_target a owl:AnnotationProperty ;
     rdfs:label "has target" ;
     rdfs:subPropertyOf net:has_relation_value .
 
-net:individual_interstellar_ii a net:Individual_Net ;
-    net:composeFrom net:atomClass_interstellar_ii ;
-    net:coverBaseNode :leaf_interstellar_ii ;
-    net:coverNode :leaf_interstellar_ii ;
-    net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "interstellar" ;
-    net:hasMotherClassNet net:atomClass_interstellar_ii ;
-    net:hasNaming "interstellar" ;
-    net:hasStructure "unknown" .
-
-net:individual_sun_s a net:Individual_Net ;
-    net:composeFrom net:atomClass_sun_s ;
-    net:coverBaseNode :leaf_sun_s ;
-    net:coverNode :leaf_sun_s ;
-    net:hasBaseClassName "Feature" ;
-    net:hasIndividualLabel "sun" ;
-    net:hasMotherClassNet net:atomClass_sun_s ;
-    net:hasNaming "sun" ;
-    net:hasStructure "unknown" .
-
 net:inverse_direction a owl:NamedIndividual .
 
 net:listBy a owl:AnnotationProperty ;
@@ -715,6 +714,16 @@ net:modCat2 a owl:AnnotationProperty ;
 
 net:normal_direction a owl:NamedIndividual .
 
+net:phenomena_possible-modality_p a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:atomProperty_see_s4 ;
+    net:coverBaseNode :leaf_possible-01_p ;
+    net:coverNode :leaf_possible-01_p ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "unknown" .
+
 net:relationOf a owl:AnnotationProperty ;
     rdfs:label "relation of" ;
     rdfs:subPropertyOf net:typeProperty .
@@ -727,176 +736,207 @@ net:verbClass a owl:AnnotationProperty ;
     rdfs:label "verb class" ;
     rdfs:subPropertyOf net:objectValue .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> a ns21:equal-01 ;
-    ns21:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
-    ns21:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p>,
-        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> a ns2:contain-01 ;
+    ns2:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    ns2:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> a ns21:extend-01 ;
-    ns21:extend-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
-    ns21:extend-01.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
-    ns3:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> a ns11:galaxy ;
+    rdfs:label "Milky Way" ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> a ns21:oppose-01 ;
-    ns21:oppose-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> a ns2:include-91 ;
+    ns2:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    ns2:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns2:include-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> a ns1:AMR ;
-    ns1:has-id "WikiAbstract-SolarSystem-20" ;
-    ns1:has-sentence "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." ;
-    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> .
-
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> a ns21:scatter-01 ;
-    ns21:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> a ns2:possible-01 ;
+    ns2:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-22" ;
+    ns3:has-sentence "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
 
 <http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
 
-ns1:AMR a owl:Class ;
+ns3:AMR a owl:Class ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:AMR_Value a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_arm rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:arm ;
+    :label "arm" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:be-located-at-91 ;
+    :label "be-located-at-91" .
 
-:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:disc ;
-    :label "disc" .
+:concept_center rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:center ;
+    :label "center" .
 
-:concept_edge rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:edge ;
-    :label "edge" .
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:contain-01 ;
+    :label "contain-01" .
 
-:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:equal-01 ;
-    :label "equal-01" .
+:concept_date-entity rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:date-entity ;
+    :label "date-entity" .
 
-:concept_extend-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:extend-01 ;
-    :label "extend-01" .
+:concept_distance-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:distance-quantity ;
+    :label "distance-quantity" .
 
-:concept_heliopause rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:heliopause ;
-    :label "heliopause" .
+:concept_galaxy rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:galaxy ;
+    :label "galaxy" .
 
-:concept_interstellar rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:interstellar ;
-    :label "interstellar" .
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:include-91 ;
+    :label "include-91" .
 
-:concept_medium rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns1:medium ;
-    :label "medium" .
+:concept_light-year rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:light-year ;
+    :label "light-year" .
 
-:concept_oppose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:oppose-01 ;
-    :label "oppose-01" .
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
 
-:concept_out rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:out ;
-    :label "out" .
+:concept_night rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:night ;
+    :label "night" .
 
 :concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns3:part ;
+    :fromAmrLk ns11:part ;
     :isReifiedConcept true ;
     :label "hasPart" .
 
-:concept_point rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:point ;
-    :label "point" .
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
 
-:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:scatter-01 ;
-    :label "scatter-01" .
+:concept_relative-position rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:relative-position ;
+    :label "relative-position" .
 
-:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:sun ;
-    :label "sun" .
+:concept_see-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:see-01 ;
+    :label "see-01" .
 
-:concept_wind rdfs:subClassOf :AMR_Term_Concept ;
-    :fromAmrLk ns3:wind ;
-    :label "wind" .
+:concept_sky rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sky ;
+    :label "sky" .
 
-:role_ARG4 a owl:Class,
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:system ;
+    :label "system" .
+
+:role_ARG3 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG4" .
+    :label "ARG3" .
 
-:role_domain a owl:Class,
+:role_op1 a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :hasRelationName "domain" ;
-    :label "domain" ;
-    :toReifyAsConcept "domain" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
 
-:variable_d a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
-    :label "d" .
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    :label "a" ;
+    :name "Orion" .
 
-:variable_e a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> ;
-    :label "e" .
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> ;
+    :label "b" .
 
-:variable_e2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> ;
-    :label "e2" .
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    :label "c" .
 
-:variable_e3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
-    :label "e3" .
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> ;
+    :label "c2" .
 
-:variable_h a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
-    :label "h" .
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> ;
+    :label "g" ;
+    :name "Milky Way" .
 
 :variable_ii a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> ;
     :label "ii" .
 
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    :label "l" .
+
 :variable_m a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
     :label "m" .
 
-:variable_o a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> ;
-    :label "o" .
-
-:variable_o2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
-    :label "o2" .
+:variable_n4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    :label "n4" .
 
 :variable_p a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> ;
     :label "p" .
 
-:variable_p2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
-    :label "p2" .
-
-:variable_p3 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
-    :label "p3" .
-
-:variable_p9 a ns3:part,
+:variable_p9 a ns11:part,
         :AMR_Variable ;
     :isReifiedVariable true ;
     :label "p9" .
 
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    :label "r" .
+
 :variable_s a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
-    :label "s" .
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    :label "s" ;
+    :name "Solar System" .
 
 :variable_s2 a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
     :label "s2" .
 
-:variable_w a :AMR_Variable ;
-    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
-    :label "w" .
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
+    :label "s4" .
+
+:variable_s5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
+    :label "s5" .
 
 sys:Degree a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
@@ -909,155 +949,230 @@ sys:Out_AnnotationProperty a owl:AnnotationProperty .
 net:Axiom_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
 net:Feature a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
-net:compositeClass_interstellar-medium_m a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_interstellar_ii ;
-    net:composeFrom net:atomClass_interstellar_ii,
-        net:atomClass_medium_m ;
-    net:coverBaseNode :leaf_medium_m ;
-    net:coverNode :leaf_interstellar_ii,
-        :leaf_medium_m ;
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_distance-quantity_d2 a net:Atom_Class_Net ;
+    :role_quant net:value_26000_blankNode ;
+    net:coverBaseNode :leaf_distance-quantity_d2 ;
+    net:coverNode :leaf_distance-quantity_d2 ;
+    net:hasClassName "distance-quantity" ;
+    net:hasNaming "distance-quantity" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_relative-position_r a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomClass_center_c ;
+    :role_quant net:atomClass_distance-quantity_d2 ;
+    net:coverBaseNode :leaf_relative-position_r ;
+    net:coverNode :leaf_relative-position_r ;
+    net:hasClassName "relative-position" ;
     net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_medium_m ;
-    net:hasNaming "interstellar-medium" ;
+    net:hasNaming "relative-position" ;
     net:hasStructure "unknown" .
 
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_see_s4 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s3 ;
+    net:coverBaseNode :leaf_see-01_s4 ;
+    net:coverNode :leaf_see-01_s4 ;
+    net:hasNaming "see" ;
+    net:hasPropertyName "see" ;
+    net:hasPropertyName01 "seeing" ;
+    net:hasPropertyName10 "see-by" ;
+    net:hasPropertyName12 "see-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s3 .
+
 net:has_value a owl:AnnotationProperty ;
     rdfs:subPropertyOf net:netProperty .
 
+net:individual_MilkyWay_g a net:Individual_Net ;
+    :role_name net:value_MilkyWay_blankNode ;
+    net:coverBaseNode :leaf_galaxy_g ;
+    net:coverNode :leaf_galaxy_g ;
+    net:hasIndividualLabel "MilkyWay" ;
+    net:hasMotherClassNet net:atomClass_galaxy_g ;
+    net:hasNaming "MilkyWay" ;
+    net:hasStructure "unknown" .
+
+net:individual_Orion_a a net:Individual_Net ;
+    :role_name net:value_Orion_blankNode ;
+    net:coverBaseNode :leaf_arm_a ;
+    net:coverNode :leaf_arm_a ;
+    net:hasIndividualLabel "Orion" ;
+    net:hasMotherClassNet net:atomClass_arm_a ;
+    net:hasNaming "Orion" ;
+    net:hasStructure "unknown" .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" .
+
 net:objectType a owl:AnnotationProperty ;
     rdfs:label "object type" ;
     rdfs:subPropertyOf net:objectProperty .
 
-net:restriction_equal-point_e a net:Restriction_Net ;
-    net:composeFrom net:atomClass_point_p,
-        net:atomProperty_equal_e ;
-    net:coverBaseNode :leaf_equal-01_e ;
-    net:coverNode :leaf_equal-01_e,
-        :leaf_point_p ;
-    net:hasNaming "equal-point" ;
-    net:hasRestrictionNetValue net:atomClass_point_p ;
-    net:hasRestrictionOnProperty net:atomProperty_equal_e ;
+net:restriction_include-star_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_star_s3,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_star_s3 ;
+    net:hasNaming "include-star" ;
+    net:hasRestrictionNetValue net:atomClass_star_s3 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
     net:hasStructure "unknown" .
 
-net:restriction_equal-pressure_e a net:Restriction_Net ;
-    net:composeFrom net:atomClass_pressure_p3,
-        net:atomProperty_equal_e ;
-    net:coverBaseNode :leaf_equal-01_e ;
-    net:coverNode :leaf_equal-01_e,
-        :leaf_pressure-01_p3 ;
-    net:hasNaming "equal-pressure" ;
-    net:hasRestrictionNetValue net:atomClass_pressure_p3 ;
-    net:hasRestrictionOnProperty net:atomProperty_equal_e ;
-    net:hasStructure "unknown" .
+net:value_26000_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_26000 ;
+    net:hasNaming "26000" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "26000" .
 
-net:restriction_hasPart-edge_p9 a net:Restriction_Net ;
-    net:composeFrom net:atomClass_edge_e3,
-        net:atomProperty_hasPart_p9 ;
-    net:coverBaseNode :leaf_hasPart_p9 ;
-    net:coverNode :leaf_edge_e3,
-        :leaf_hasPart_p9 ;
-    net:hasNaming "hasPart-edge" ;
-    net:hasRestrictionNetValue net:atomClass_edge_e3 ;
-    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
-    net:hasStructure "unknown" .
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> a ns2:be-located-at-91 ;
+    ns2:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    ns2:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> a ns3:date-entity ;
+    ns11:dayperiod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> a ns11:distance-quantity ;
+    ns11:quant "26000" ;
+    ns11:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> a ns11:light-year ;
+    rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> a ns3:disc ;
-    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> a ns3:most ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> a ns3:heliopause ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> a ns11:night ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> a ns3:interstellar ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> a ns11:relative-position ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    ns11:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> a ns1:medium ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> a ns11:system ;
+    rdfs:label "Solar System" ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> a ns3:out ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> a ns2:see-01 ;
+    ns2:see-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> a ns21:pressure-01 ;
-    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> a ns11:sky ;
+    ns11:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> a ns3:sun ;
+ns2:be-located-at-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> a ns3:wind ;
-    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
+ns2:contain-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:equal-01 a ns1:Frame ;
+ns2:include-91 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:extend-01 a ns1:Frame ;
+ns2:possible-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:oppose-01 a ns1:Frame ;
+ns2:see-01 a ns3:Frame ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:scatter-01 a ns1:Frame ;
+ns11:arm a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:disc a ns1:Concept ;
+ns11:center a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:edge a ns1:Concept ;
+ns11:distance-quantity a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:heliopause a ns1:Concept ;
+ns11:galaxy a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:interstellar a ns1:Concept ;
+ns11:light-year a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:out a ns1:Concept ;
+ns11:night a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:part a ns1:Role ;
+ns11:part a ns3:Role ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:point a ns1:Concept ;
+ns11:relative-position a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:sun a ns1:Concept ;
+ns11:sky a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns3:wind a ns1:Concept ;
+ns11:system a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns1:medium a ns1:Concept ;
+ns3:date-entity a ns3:Concept ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-:concept_pressure-01 rdfs:subClassOf :AMR_Predicat_Concept ;
-    :fromAmrLk ns21:pressure-01 ;
-    :label "pressure-01" .
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_star rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#star> ;
+    :label "star" .
 
 :hasLink a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_extend-01_e2 a :AMR_Leaf ;
-    :edge_e2_e3 :leaf_edge_e3 ;
-    :edge_e2_o2 :leaf_out_o2 ;
-    :edge_e2_p :leaf_point_p ;
-    :hasConcept :concept_extend-01 ;
-    :hasVariable :variable_e2 .
-
-:leaf_oppose-01_o a :AMR_Leaf ;
-    :edge_o_p3 :leaf_pressure-01_p3 ;
-    :hasConcept :concept_oppose-01 ;
-    :hasVariable :variable_o .
-
-:leaf_scatter-01_s2 a :AMR_Leaf ;
-    :edge_s2_d :leaf_disc_d ;
-    :hasConcept :concept_scatter-01 ;
-    :hasVariable :variable_s2 .
+:leaf_contain-01_c2 a :AMR_Leaf ;
+    :edge_c2_a :leaf_arm_a ;
+    :edge_c2_s2 :leaf_star_s2 ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_g :leaf_galaxy_g ;
+    :edge_p9_ARG1_c :leaf_center_c ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_s4 :leaf_see-01_s4 ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
 
 :phenomena_conjunction a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena ;
@@ -1066,64 +1181,125 @@ ns1:medium a ns1:Concept ;
         "neither" ;
     :label "conjunction" .
 
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
 :role_ARG2 a owl:Class,
         net:Relation ;
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG2" .
 
-:role_mod a owl:Class,
+:role_quant a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_NonCore_Role ;
-    :getDirectPropertyName "hasFeature"^^xsd:string ;
-    :getPropertyType rdfs:subClassOf,
-        owl:ObjectProperty ;
-    :label "mod" ;
-    :toReifyAsConcept "mod" ;
-    :toReifyWithBaseEdge "ARG0" ;
-    :toReifyWithHeadEdge "ARG1" .
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
 
-sys:Out_ObjectProperty a owl:ObjectProperty .
+:value_26000 a :AMR_Value ;
+    rdfs:label "26000" .
 
-net:Individual_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+:value_MilkyWay a :AMR_Value ;
+    rdfs:label "MilkyWay" .
+
+:value_Orion a :AMR_Value ;
+    rdfs:label "Orion" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
 
 net:Property_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-net:atomClass_heliopause_h a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_heliopause_h ;
-    net:coverNode :leaf_heliopause_h ;
-    net:hasClassName "heliopause" ;
-    net:hasNaming "heliopause" ;
+net:atomClass_arm_a a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Orion_blankNode ;
+    net:coverBaseNode :leaf_arm_a ;
+    net:coverNode :leaf_arm_a ;
+    net:hasClassName "arm" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "arm" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_center_c a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_center_c ;
+    net:coverNode :leaf_center_c ;
+    net:hasClassName "center" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "center" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_galaxy_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_MilkyWay_blankNode ;
+    net:coverBaseNode :leaf_galaxy_g ;
+    net:coverNode :leaf_galaxy_g ;
+    net:hasClassName "galaxy" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "galaxy" ;
     net:hasStructure "unknown" .
 
-net:atomProperty_pressure_p2 a net:Atom_Property_Net,
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
         net:Deprecated_Net ;
-    :role_ARG0 net:atomClass_wind_w,
-        net:compositeClass_sun-wind_w ;
-    net:coverBaseNode :leaf_pressure-01_p2 ;
-    net:coverNode :leaf_pressure-01_p2 ;
-    net:hasNaming "pressure" ;
-    net:hasPropertyName "pressure" ;
-    net:hasPropertyName01 "pressureing" ;
-    net:hasPropertyName10 "pressure-by" ;
-    net:hasPropertyName12 "pressure-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_wind_w .
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "unknown" .
 
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> a ns3:edge ;
+net:value_MilkyWay_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_MilkyWay ;
+    net:hasNaming "MilkyWay" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "MilkyWay" .
+
+net:value_Orion_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Orion ;
+    net:hasNaming "Orion" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Orion" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> a ns11:arm ;
+    rdfs:label "Orion" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> a ns11:center ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> a <http://amr.isi.edu/entity-types#star> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> a ns21:pressure-01 ;
-    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> a <http://amr.isi.edu/entity-types#star> ;
     rdfs:subClassOf :AMR_Linked_Data .
 
-ns21:pressure-01 a ns1:Frame ;
+<http://amr.isi.edu/entity-types#star> a ns3:NamedEntity ;
     rdfs:subClassOf :AMR_Linked_Data .
 
 :AMR_Concept a owl:Class ;
@@ -1145,130 +1321,115 @@ ns21:pressure-01 a ns1:Frame ;
     rdfs:range rdfs:Literal ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
-:leaf_heliopause_h a :AMR_Leaf ;
-    :hasConcept :concept_heliopause ;
-    :hasVariable :variable_h .
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_r :leaf_relative-position_r ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_date-entity_d a :AMR_Leaf ;
+    :edge_d_n4 :leaf_night_n4 ;
+    :hasConcept :concept_date-entity ;
+    :hasVariable :variable_d .
+
+:leaf_distance-quantity_d2 a :AMR_Leaf ;
+    :edge_d2_l :leaf_light-year_l ;
+    :edge_d2_quant_26000 :value_26000 ;
+    :hasConcept :concept_distance-quantity ;
+    :hasVariable :variable_d2 .
 
-:leaf_out_o2 a :AMR_Leaf ;
-    :hasConcept :concept_out ;
-    :hasVariable :variable_o2 .
+:leaf_light-year_l a :AMR_Leaf ;
+    :hasConcept :concept_light-year ;
+    :hasVariable :variable_l .
+
+:leaf_night_n4 a :AMR_Leaf ;
+    :hasConcept :concept_night ;
+    :hasVariable :variable_n4 .
+
+:leaf_see-01_s4 a :AMR_Leaf ;
+    :edge_s4_s3 :leaf_star_s3 ;
+    :edge_s4_s5 :leaf_sky_s5 ;
+    :hasConcept :concept_see-01 ;
+    :hasVariable :variable_s4 .
+
+:leaf_sky_s5 a :AMR_Leaf ;
+    :edge_s5_d :leaf_date-entity_d ;
+    :hasConcept :concept_sky ;
+    :hasVariable :variable_s5 .
 
 :phenomena_modality a owl:Class ;
     rdfs:subClassOf :AMR_Phenomena .
 
-:role_ARG1 a owl:Class,
+:role_name a owl:Class,
         net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG1" .
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
 
 :toReify a owl:AnnotationProperty ;
     rdfs:subPropertyOf :AMR_AnnotationProperty .
 
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
 net:Net_Structure a owl:Class ;
     rdfs:label "Semantic Net Structure" ;
     rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
 
-net:Restriction_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
-net:atomClass_medium_m a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_interstellar_ii ;
-    net:composeFrom net:atomProperty_medium_m ;
-    net:coverBaseNode :leaf_medium_m ;
-    net:coverNode :leaf_medium_m ;
-    net:hasClassName "medium" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "medium" ;
-    net:hasStructure "unknown" .
-
-net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_disc_d ;
-    :role_ARG1 net:atomClass_edge_e3 ;
-    net:coverBaseNode :leaf_hasPart_p9 ;
-    net:coverNode :leaf_hasPart_p9 ;
-    net:hasNaming "hasPart" ;
-    net:hasPropertyName "hasPart" ;
-    net:hasPropertyName01 "hasParting" ;
-    net:hasPropertyName10 "hasPart-by" ;
-    net:hasPropertyName12 "hasPart-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_disc_d,
-        :leaf_edge_e3 .
-
-net:atomProperty_medium_m a net:Atom_Property_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_interstellar_ii ;
-    net:coverBaseNode :leaf_medium_m ;
-    net:coverNode :leaf_medium_m ;
-    net:hasNaming "medium" ;
-    net:hasPropertyName "medium" ;
-    net:hasPropertyName01 "mediuming" ;
-    net:hasPropertyName10 "medium-by" ;
-    net:hasPropertyName12 "medium-of" ;
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s2 ;
+    :role_ARG2 net:atomClass_star_s3 ;
+    :role_ARG3 net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
     net:hasPropertyType owl:ObjectProperty ;
     net:hasStructure "unknown" ;
     net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_interstellar_ii .
-
-net:atomProperty_pressure_p3 a net:Atom_Property_Net,
-        net:Deprecated_Net ;
-    :role_ARG0 net:atomClass_medium_m,
-        net:atomProperty_medium_m,
-        net:compositeClass_interstellar-medium_m ;
-    net:coverBaseNode :leaf_pressure-01_p3 ;
-    net:coverNode :leaf_pressure-01_p3 ;
-    net:hasNaming "pressure" ;
-    net:hasPropertyName "pressure" ;
-    net:hasPropertyName01 "pressureing" ;
-    net:hasPropertyName10 "pressure-by" ;
-    net:hasPropertyName12 "pressure-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_medium_m .
+    net:targetArgumentNode :leaf_most_m,
+        :leaf_star_s2,
+        :leaf_star_s3 .
 
 net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> a ns3:point ;
-    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 :AMR_Element a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-net:atomClass_disc_d a net:Atom_Class_Net,
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_relative-position_r a :AMR_Leaf ;
+    :edge_r_c :leaf_center_c ;
+    :edge_r_d2 :leaf_distance-quantity_d2 ;
+    :hasConcept :concept_relative-position ;
+    :hasVariable :variable_r .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_star_s2 a net:Atom_Class_Net,
         net:Class_Net,
         net:Deprecated_Net ;
-    net:coverBaseNode :leaf_disc_d ;
-    net:coverNode :leaf_disc_d ;
-    net:hasClassName "disc" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "disc" ;
-    net:hasStructure "unknown" .
-
-net:compositeClass_sun-wind_w a net:Class_Net,
-        net:Composite_Class_Net ;
-    :role_mod net:atomClass_sun_s ;
-    net:composeFrom net:atomClass_sun_s,
-        net:atomClass_wind_w ;
-    net:coverBaseNode :leaf_wind_w ;
-    net:coverNode :leaf_sun_s,
-        :leaf_wind_w ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_star_s2 ;
+    net:hasClassName "star" ;
     net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_wind_w ;
-    net:hasNaming "sun-wind" ;
+    net:hasNaming "star" ;
     net:hasStructure "unknown" .
 
 net:typeProperty a owl:AnnotationProperty ;
     rdfs:label "type property" .
 
-ns1:Frame a ns1:Concept,
+ns3:Frame a ns3:Concept,
         owl:Class,
         owl:NamedIndividual ;
     rdfs:label "AMR-PropBank-Frame" ;
@@ -1280,73 +1441,31 @@ ns1:Frame a ns1:Concept,
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-:leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_d :leaf_disc_d ;
-    :edge_p9_ARG1_e3 :leaf_edge_e3 ;
-    :hasConcept :concept_part ;
-    :hasVariable :variable_p9 ;
-    :isReifiedLeaf true .
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
 
-:role_ARG0 a owl:Class,
-        net:Relation ;
-    rdfs:subClassOf :AMR_Core_Role ;
-    :label "ARG0" .
+:leaf_center_c a :AMR_Leaf ;
+    :edge_c_a :leaf_arm_a ;
+    :hasConcept :concept_center ;
+    :hasVariable :variable_c .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :edge_ii_s2 :leaf_star_s2 ;
+    :edge_ii_s3 :leaf_star_s3 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
 
 sys:Out_Structure a owl:Class ;
     rdfs:label "Output Ontology Structure" .
 
-net:Composite_Class_Net a owl:Class ;
-    rdfs:subClassOf net:Class_Net .
-
-net:atomClass_edge_e3 a net:Atom_Class_Net,
-        net:Class_Net ;
-    net:coverBaseNode :leaf_edge_e3 ;
-    net:coverNode :leaf_edge_e3 ;
-    net:hasClassName "edge" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "edge" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_point_p a net:Atom_Class_Net,
-        net:Class_Net ;
-    :role_domain net:atomClass_heliopause_h ;
-    net:coverBaseNode :leaf_point_p ;
-    net:coverNode :leaf_point_p ;
-    net:hasClassName "point" ;
-    net:hasClassType sys:Entity ;
-    net:hasMotherClassNet net:atomClass_heliopause_h ;
-    net:hasNaming "point" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_pressure_p2 a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_ARG0 net:atomClass_wind_w,
-        net:compositeClass_sun-wind_w ;
-    net:composeFrom net:atomProperty_pressure_p2 ;
-    net:coverBaseNode :leaf_pressure-01_p2 ;
-    net:coverNode :leaf_pressure-01_p2 ;
-    net:hasClassName "pressure" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "pressure" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_pressure_p3 a net:Atom_Class_Net,
+net:atomClass_star_s3 a net:Atom_Class_Net,
         net:Class_Net ;
-    :role_ARG0 net:atomProperty_medium_m ;
-    net:composeFrom net:atomProperty_pressure_p3 ;
-    net:coverBaseNode :leaf_pressure-01_p3 ;
-    net:coverNode :leaf_pressure-01_p3 ;
-    net:hasClassName "pressure" ;
+    net:coverBaseNode :leaf_star_s3 ;
+    net:coverNode :leaf_star_s3 ;
+    net:hasClassName "star" ;
     net:hasClassType sys:Entity ;
-    net:hasNaming "pressure" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_sun_s a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_sun_s ;
-    net:coverNode :leaf_sun_s ;
-    net:hasClassName "sun" ;
-    net:hasNaming "sun" ;
+    net:hasNaming "star" ;
     net:hasStructure "unknown" .
 
 net:netProperty a owl:AnnotationProperty ;
@@ -1357,65 +1476,24 @@ net:netProperty a owl:AnnotationProperty ;
 
 :AMR_Structure a owl:Class .
 
-:leaf_sun_s a :AMR_Leaf ;
-    :hasConcept :concept_sun ;
+:leaf_galaxy_g a :AMR_Leaf ;
+    :edge_g_name_MilkyWay :value_MilkyWay ;
+    :hasConcept :concept_galaxy ;
+    :hasVariable :variable_g .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
     :hasVariable :variable_s .
 
-:leaf_wind_w a :AMR_Leaf ;
-    :edge_w_s :leaf_sun_s ;
-    :hasConcept :concept_wind ;
-    :hasVariable :variable_w .
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
 
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
-net:Relation a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
-
-net:atomClass_interstellar_ii a net:Atom_Class_Net ;
-    net:coverBaseNode :leaf_interstellar_ii ;
-    net:coverNode :leaf_interstellar_ii ;
-    net:hasClassName "interstellar" ;
-    net:hasNaming "interstellar" ;
-    net:hasStructure "unknown" .
-
-net:atomClass_wind_w a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_mod net:atomClass_sun_s ;
-    net:coverBaseNode :leaf_wind_w ;
-    net:coverNode :leaf_wind_w ;
-    net:hasClassName "wind" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "wind" ;
-    net:hasStructure "unknown" .
-
-net:atomProperty_equal_e a net:Atom_Property_Net ;
-    :role_ARG1 net:atomClass_pressure_p2,
-        net:atomProperty_pressure_p2 ;
-    :role_ARG2 net:atomClass_point_p,
-        net:atomClass_pressure_p3,
-        net:atomProperty_pressure_p3 ;
-    net:coverBaseNode :leaf_equal-01_e ;
-    net:coverNode :leaf_equal-01_e ;
-    net:hasNaming "equal" ;
-    net:hasPropertyName "equal" ;
-    net:hasPropertyName01 "equaling" ;
-    net:hasPropertyName10 "equal-by" ;
-    net:hasPropertyName12 "equal-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "unknown" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_point_p,
-        :leaf_pressure-01_p2,
-        :leaf_pressure-01_p3 .
-
-ns21:FrameRole a ns1:Role,
-        owl:Class,
-        owl:NamedIndividual ;
-    rdfs:label "AMR-PropBank-Role" ;
-    rdfs:subClassOf :AMR_Linked_Data .
-
 rdf:Property a owl:Class .
 
 :AMR_Predicat_Concept a owl:Class ;
@@ -1424,50 +1502,43 @@ rdf:Property a owl:Class .
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:leaf_interstellar_ii a :AMR_Leaf ;
-    :hasConcept :concept_interstellar ;
-    :hasVariable :variable_ii .
+:leaf_arm_a a :AMR_Leaf ;
+    :edge_a_name_Orion :value_Orion ;
+    :hasConcept :concept_arm ;
+    :hasVariable :variable_a .
 
-net:Deprecated_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
-:AMR_Term_Concept a owl:Class ;
-    rdfs:subClassOf :AMR_Concept .
-
-:leaf_disc_d a :AMR_Leaf ;
-    :hasConcept :concept_disc ;
-    :hasVariable :variable_d .
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
 
-:leaf_edge_e3 a :AMR_Leaf ;
-    :hasConcept :concept_edge ;
-    :hasVariable :variable_e3 .
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
 
-:leaf_equal-01_e a :AMR_Leaf ;
-    :edge_e_p :leaf_point_p ;
-    :edge_e_p2 :leaf_pressure-01_p2 ;
-    :edge_e_p3 :leaf_pressure-01_p3 ;
-    :hasConcept :concept_equal-01 ;
-    :hasVariable :variable_e .
+:leaf_star_s2 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s2 .
 
-:leaf_medium_m a :AMR_Leaf ;
-    :edge_m_ii :leaf_interstellar_ii ;
-    :hasConcept :concept_medium ;
-    :hasVariable :variable_m .
+:leaf_star_s3 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s3 .
 
-net:Atom_Property_Net a owl:Class ;
-    rdfs:subClassOf net:Property_Net .
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
 
 net:has_object a owl:AnnotationProperty ;
     rdfs:label "relation" ;
     rdfs:subPropertyOf net:netProperty .
 
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:leaf_point_p a :AMR_Leaf ;
-    :edge_p_h :leaf_heliopause_h ;
-    :hasConcept :concept_point ;
-    :hasVariable :variable_p .
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
 net:Net a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
@@ -1477,38 +1548,25 @@ net:Net a owl:Class ;
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:leaf_pressure-01_p2 a :AMR_Leaf ;
-    :edge_p2_w :leaf_wind_w ;
-    :hasConcept :concept_pressure-01 ;
-    :hasVariable :variable_p2 .
-
-:leaf_pressure-01_p3 a :AMR_Leaf ;
-    :edge_p3_m :leaf_medium_m ;
-    :hasConcept :concept_pressure-01 ;
-    :hasVariable :variable_p3 .
-
-sys:Entity a owl:Class ;
-    rdfs:subClassOf sys:Out_Structure .
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
 
 net:Atom_Class_Net a owl:Class ;
     rdfs:subClassOf net:Class_Net .
 
-net:Class_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
-:AMR_Variable a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
     rdfs:subPropertyOf net:objectProperty .
 
-:AMR_Edge a owl:Class ;
-    rdfs:subClassOf :AMR_Structure .
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
 
 :AMR_Leaf a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
 :AMR_Linked_Data a owl:Class .
 
 [] a owl:AllDisjointClasses ;
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
index 687c89a90782fdc83d502ca48716c741be93e438..a7103c8f79c91f376924ad70237873c0fc88a1e8 100644
--- a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -2,111 +2,95 @@
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 
-<https://tenet.tetras-libre.fr/extract-result#disc-hasPart-edge> a owl:Class ;
-    rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#edge> ],
-        <https://tenet.tetras-libre.fr/extract-result#disc> ;
+<https://tenet.tetras-libre.fr/extract-result#MilkyWay> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#galaxy> ;
+    rdfs:label "MilkyWay" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#extend> a owl:ObjectProperty ;
-    rdfs:label "extend" ;
-    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+<https://tenet.tetras-libre.fr/extract-result#Orion> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#arm> ;
+    rdfs:label "Orion" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#heliopause> a owl:Class ;
-    rdfs:label "heliopause" ;
-    rdfs:subClassOf ns1:Undetermined_Thing ;
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#interstellar-medium> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#medium> ;
-    ns1:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#oppose> a owl:ObjectProperty ;
-    rdfs:label "oppose" ;
+<https://tenet.tetras-libre.fr/extract-result#be> a owl:ObjectProperty ;
+    rdfs:label "be" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#out> a owl:Class ;
-    rdfs:label "out" ;
-    rdfs:subClassOf ns1:Undetermined_Thing ;
-    ns1:fromStructure "unknown" .
-
-<https://tenet.tetras-libre.fr/extract-result#pressure-equal-point> a owl:Class ;
-    rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#equal> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#point> ],
-        <https://tenet.tetras-libre.fr/extract-result#pressure> ;
+<https://tenet.tetras-libre.fr/extract-result#center> a owl:Class ;
+    rdfs:label "center" ;
+    rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#pressure-equal-pressure> a owl:Class ;
-    rdfs:subClassOf [ a owl:Restriction ;
-            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#equal> ;
-            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#pressure> ],
-        <https://tenet.tetras-libre.fr/extract-result#pressure> ;
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#scatter> a owl:ObjectProperty ;
-    rdfs:label "scatter" ;
+<https://tenet.tetras-libre.fr/extract-result#date> a owl:ObjectProperty ;
+    rdfs:label "date" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#sun-wind> a owl:Class ;
-    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#wind> ;
+<https://tenet.tetras-libre.fr/extract-result#distance-quantity> a owl:Class ;
+    rdfs:label "distance-quantity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
-    rdfs:label "disc" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#edge> a owl:Class ;
-    rdfs:label "edge" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#light-year> a owl:Class ;
+    rdfs:label "light-year" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
-    rdfs:label "hasPart" ;
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#interstellar> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#interstellar> ;
-    rdfs:label "interstellar" ;
+<https://tenet.tetras-libre.fr/extract-result#night> a owl:Class ;
+    rdfs:label "night" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#medium> a owl:Class ;
-    rdfs:label "medium" ;
+<https://tenet.tetras-libre.fr/extract-result#relative-position> a owl:Class ;
+    rdfs:label "relative-position" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#point> a owl:Class ;
-    rdfs:label "point" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#see> a owl:ObjectProperty ;
+    rdfs:label "see" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class,
-        owl:Individual,
-        <https://tenet.tetras-libre.fr/extract-result#sun> ;
-    rdfs:label "sun" ;
+<https://tenet.tetras-libre.fr/extract-result#sky> a owl:Class ;
+    rdfs:label "sky" ;
     rdfs:subClassOf ns1:Undetermined_Thing ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#wind> a owl:Class ;
-    rdfs:label "wind" ;
-    rdfs:subClassOf ns1:Entity ;
+<https://tenet.tetras-libre.fr/extract-result#star-include-star> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#star> ],
+        <https://tenet.tetras-libre.fr/extract-result#star> ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
-    rdfs:label "equal" ;
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
     rdfs:subPropertyOf ns1:Out_ObjectProperty ;
     ns1:fromStructure "unknown" .
 
-<https://tenet.tetras-libre.fr/extract-result#pressure> a owl:Class ;
-    rdfs:label "pressure" ;
+<https://tenet.tetras-libre.fr/extract-result#star> a owl:Class ;
+    rdfs:label "star" ;
     rdfs:subClassOf ns1:Entity ;
     ns1:fromStructure "unknown" .
 
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2d2f7daaed1b3cb44f69859fa1cd0b47267558b0
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1812 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG2 a ns11:FrameRole .
+
+ns11:equal-01.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:mean-01.ARG1 a ns11:FrameRole .
+
+ns11:mean-01.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_e a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:root_WikiAbstract-SolarSystem-03 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-03" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mercury" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subClassOf sys:Entity ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#not-direct> a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-include-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-mean-satellite> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#mean> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#satellite> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#size> a owl:Class ;
+    rdfs:label "size" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "unknown" .
+
+net:axiom_disjointProperty_not-direct_direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_object-include-object_o a net:Composite_Class_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o,
+        :leaf_object_o2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-include-object" ;
+    net:hasRestriction net:restriction_include-object_ii ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_object-mean-satellite_o2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_object_o2,
+        :leaf_satellite_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o2 ;
+    net:hasNaming "object-mean-satellite" ;
+    net:hasRestriction net:restriction_mean-satellite_m ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG2 net:atomClass_small_s3 ;
+    :role_ARG3 net:atomProperty_most_m3 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> a ns11:mean-01 ;
+    ns11:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-03" ;
+    ns3:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_more_m4 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:composeFrom net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasClassName "more" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "more" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_size_s4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_size_s4 ;
+    net:coverNode :leaf_size_s4 ;
+    net:hasClassName "size" ;
+    net:hasNaming "size" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_equal_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    :role_ARG2 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG3 net:atomClass_size_s4 ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e ;
+    net:hasNaming "equal" ;
+    net:hasPropertyName "equal" ;
+    net:hasPropertyName01 "equaling" ;
+    net:hasPropertyName10 "equal-by" ;
+    net:hasPropertyName12 "equal-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_more_m4,
+        :leaf_planet_p,
+        :leaf_size_s4 .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m3 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m3 ;
+    net:coverNode :leaf_most_m3 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    :role_ARG4 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:restriction_include-object_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o2 ;
+    net:hasNaming "include-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "unknown" .
+
+net:restriction_mean-satellite_m a net:Restriction_Net ;
+    net:composeFrom net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_satellite_s2 ;
+    net:hasNaming "mean-satellite" ;
+    net:hasRestrictionNetValue net:atomClass_satellite_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_mean_m ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> a ns11:equal-01 ;
+    ns11:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    ns11:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:equal-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> a ns3:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:equal-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:mean-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:natural-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_almost_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasClassName "almost" ;
+    net:hasNaming "almost" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_orbit_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o3 ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_almost_a2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_2_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_2 ;
+    net:hasNaming "2" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "2" .
+
+net:value_Mercury_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mercury ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Mercury" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_object_o2 .
+
+net:atomProperty_mean_m a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG2 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m ;
+    net:hasNaming "mean" ;
+    net:hasPropertyName "mean" ;
+    net:hasPropertyName01 "meaning" ;
+    net:hasPropertyName10 "mean-by" ;
+    net:hasPropertyName12 "mean-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_satellite_s2 .
+
+net:atomProperty_orbit_o3 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_sun_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:individual_Mercury_p a net:Individual_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Mercury" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:compositeProperty_not-direct_d a net:Composite_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_satellite_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_satellite_s2 ;
+    net:coverNode :leaf_satellite_s2 ;
+    net:hasClassName "satellite" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "satellite" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_direct_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o3,
+        :value_negative .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :edge_d_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2f99d77ad9e86becc39df6f711626780096ab041
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1316 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG2 a ns11:FrameRole .
+
+ns11:equal-01.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:mean-01.ARG1 a ns11:FrameRole .
+
+ns11:mean-01.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_e a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :edge_d_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:root_WikiAbstract-SolarSystem-03 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-03" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> a ns11:mean-01 ;
+    ns11:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-03" ;
+    ns3:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> a ns11:equal-01 ;
+    ns11:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    ns11:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:equal-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> a ns3:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:equal-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:mean-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:natural-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..b56171f6ed2de6b79ba641dad17bb1407c95192e
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1717 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG2 a ns11:FrameRole .
+
+ns11:equal-01.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:mean-01.ARG1 a ns11:FrameRole .
+
+ns11:mean-01.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_e a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:root_WikiAbstract-SolarSystem-03 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-03" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "unknown" .
+
+net:axiom_disjointProperty_not-direct_direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_object-include-object_o a net:Composite_Class_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o,
+        :leaf_object_o2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-include-object" ;
+    net:hasRestriction net:restriction_include-object_ii ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_object-mean-satellite_o2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_object_o2,
+        :leaf_satellite_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o2 ;
+    net:hasNaming "object-mean-satellite" ;
+    net:hasRestriction net:restriction_mean-satellite_m ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG2 net:atomClass_small_s3 ;
+    :role_ARG3 net:atomProperty_most_m3 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> a ns11:mean-01 ;
+    ns11:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-03" ;
+    ns3:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_more_m4 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:composeFrom net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasClassName "more" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "more" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_size_s4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_size_s4 ;
+    net:coverNode :leaf_size_s4 ;
+    net:hasClassName "size" ;
+    net:hasNaming "size" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_equal_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    :role_ARG2 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG3 net:atomClass_size_s4 ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e ;
+    net:hasNaming "equal" ;
+    net:hasPropertyName "equal" ;
+    net:hasPropertyName01 "equaling" ;
+    net:hasPropertyName10 "equal-by" ;
+    net:hasPropertyName12 "equal-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_more_m4,
+        :leaf_planet_p,
+        :leaf_size_s4 .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m3 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m3 ;
+    net:coverNode :leaf_most_m3 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    :role_ARG4 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "unknown" .
+
+net:restriction_include-object_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o2 ;
+    net:hasNaming "include-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "unknown" .
+
+net:restriction_mean-satellite_m a net:Restriction_Net ;
+    net:composeFrom net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_satellite_s2 ;
+    net:hasNaming "mean-satellite" ;
+    net:hasRestrictionNetValue net:atomClass_satellite_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_mean_m ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> a ns11:equal-01 ;
+    ns11:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    ns11:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:equal-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> a ns3:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:equal-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:mean-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:natural-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_almost_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasClassName "almost" ;
+    net:hasNaming "almost" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_orbit_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o3 ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_almost_a2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_2_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_2 ;
+    net:hasNaming "2" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "2" .
+
+net:value_Mercury_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mercury ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Mercury" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_object_o2 .
+
+net:atomProperty_mean_m a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG2 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m ;
+    net:hasNaming "mean" ;
+    net:hasPropertyName "mean" ;
+    net:hasPropertyName01 "meaning" ;
+    net:hasPropertyName10 "mean-by" ;
+    net:hasPropertyName12 "mean-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_satellite_s2 .
+
+net:atomProperty_orbit_o3 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_sun_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:individual_Mercury_p a net:Individual_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Mercury" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:compositeProperty_not-direct_d a net:Composite_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_satellite_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_satellite_s2 ;
+    net:coverNode :leaf_satellite_s2 ;
+    net:hasClassName "satellite" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "satellite" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_direct_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o3,
+        :value_negative .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :edge_d_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "unknown" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..6673c17fc6c950906059b6154ba83d9e83d5b9ea
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,99 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mercury" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#not-direct> a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-include-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-mean-satellite> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#mean> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#satellite> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#size> a owl:Class ;
+    rdfs:label "size" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..a91112d0676c3c059d078594d1d7a275324c5417
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1453 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:cause-01.ARG0 a ns11:FrameRole .
+
+ns11:cause-01.ARG1 a ns11:FrameRole .
+
+ns11:collapse-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG2 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns2:unit a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_b_n2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_t a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_c2_g a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c2_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c3_g2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_f_b a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_f_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_f_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_c2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_t_quant_4600000000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_y a :AMR_Edge ;
+    :hasRoleID "unit" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-04 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> ;
+    :hasRootLeaf :leaf_form-01_f ;
+    :hasSentenceID "WikiAbstract-SolarSystem-04" ;
+    :hasSentenceStatement "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#before> a owl:Class ;
+    rdfs:label "before" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#collapse-cause-gravity> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#cause> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#gravity> ],
+        <https://tenet.tetras-libre.fr/extract-result#collapse> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#form> a owl:ObjectProperty ;
+    rdfs:label "form" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#intercontinental-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#molecule> a owl:Class ;
+    rdfs:label "molecule" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#now> a owl:Class ;
+    rdfs:label "now" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#temporal-quantity> a owl:Class ;
+    rdfs:label "temporal-quantity" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#year> a owl:ObjectProperty ;
+    rdfs:label "year" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_before_b a net:Atom_Class_Net ;
+    :role_op1 net:atomClass_now_n2 ;
+    :role_quant net:atomClass_temporal-quantity_t ;
+    net:coverBaseNode :leaf_before_b ;
+    net:coverNode :leaf_before_b ;
+    net:hasClassName "before" ;
+    net:hasNaming "before" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_molecule_m a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_molecule_m ;
+    net:coverNode :leaf_molecule_m ;
+    net:hasClassName "molecule" ;
+    net:hasNaming "molecule" ;
+    net:hasStructure "unknown" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_form_f a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG2 net:atomClass_collapse_c,
+        net:atomProperty_collapse_c ;
+    net:coverBaseNode :leaf_form-01_f ;
+    net:coverNode :leaf_form-01_f ;
+    net:hasNaming "form" ;
+    net:hasPropertyName "form" ;
+    net:hasPropertyName01 "forming" ;
+    net:hasPropertyName10 "form-by" ;
+    net:hasPropertyName12 "form-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_collapse-01_c,
+        :leaf_system_s .
+
+net:atomProperty_year_y a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_year_y ;
+    net:coverNode :leaf_year_y ;
+    net:hasNaming "year" ;
+    net:hasPropertyName "year" ;
+    net:hasPropertyName01 "yearing" ;
+    net:hasPropertyName10 "year-by" ;
+    net:hasPropertyName12 "year-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_collapse-cause-gravity_c a net:Composite_Class_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:composeFrom net:atomClass_collapse_c,
+        net:atomClass_gravity_g2,
+        net:atomProperty_cause_c3 ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_cause-01_c3,
+        :leaf_collapse-01_c,
+        :leaf_gravity_g2 ;
+    net:hasMotherClassNet net:atomClass_collapse_c ;
+    net:hasNaming "collapse-cause-gravity" ;
+    net:hasRestriction net:restriction_cause-gravity_c3 ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_giant_g a net:Individual_Net ;
+    net:composeFrom net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "giant" ;
+    net:hasMotherClassNet net:atomClass_giant_g ;
+    net:hasNaming "giant" ;
+    net:hasStructure "unknown" .
+
+net:individual_intercontinental_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_intercontinental_ii ;
+    net:coverNode :leaf_intercontinental_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "intercontinental" ;
+    net:hasMotherClassNet net:atomClass_intercontinental_ii ;
+    net:hasNaming "intercontinental" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> a ns11:cause-01 ;
+    ns11:cause-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns11:cause-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> a ns2:molecule ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-04" ;
+    ns3:has-sentence "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_before rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:before ;
+    :label "before" .
+
+:concept_cause-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:cause-01 ;
+    :label "cause-01" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:cloud ;
+    :label "cloud" .
+
+:concept_collapse-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:collapse-01 ;
+    :label "collapse-01" .
+
+:concept_form-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:form-01 ;
+    :label "form-01" .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:giant ;
+    :label "giant" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_intercontinental rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:intercontinental ;
+    :label "intercontinental" .
+
+:concept_molecule rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:molecule ;
+    :label "molecule" .
+
+:concept_now rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:now ;
+    :label "now" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:concept_temporal-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:temporal-quantity ;
+    :label "temporal-quantity" .
+
+:concept_year rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:year ;
+    :label "year" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> ;
+    :label "c3" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> ;
+    :label "f" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> ;
+    :label "g" .
+
+:variable_g2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    :label "g2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> ;
+    :label "m" .
+
+:variable_n2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    :label "n2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    :label "t" .
+
+:variable_y a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    :label "y" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#cause> a owl:ObjectProperty ;
+    rdfs:label "cause" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#collapse> a owl:Class ;
+    rdfs:label "collapse" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    rdfs:label "giant" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#gravity> a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#intercontinental> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#intercontinental> ;
+    rdfs:label "intercontinental" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_now_n2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_now_n2 ;
+    net:coverNode :leaf_now_n2 ;
+    net:hasClassName "now" ;
+    net:hasNaming "now" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_temporal-quantity_t a net:Atom_Class_Net ;
+    :role_quant net:value_4600000000_blankNode ;
+    net:coverBaseNode :leaf_temporal-quantity_t ;
+    net:coverNode :leaf_temporal-quantity_t ;
+    net:hasClassName "temporal-quantity" ;
+    net:hasNaming "temporal-quantity" ;
+    net:hasStructure "unknown" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_cause-gravity_c3 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_gravity_g2,
+        net:atomProperty_cause_c3 ;
+    net:coverBaseNode :leaf_cause-01_c3 ;
+    net:coverNode :leaf_cause-01_c3,
+        :leaf_gravity_g2 ;
+    net:hasNaming "cause-gravity" ;
+    net:hasRestrictionNetValue net:atomClass_gravity_g2 ;
+    net:hasRestrictionOnProperty net:atomProperty_cause_c3 ;
+    net:hasStructure "unknown" .
+
+net:value_4600000000_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_4600000000 ;
+    net:hasNaming "4600000000" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "4600000000" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> a ns2:before ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> a ns11:form-01 ;
+    ns11:form-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    ns11:form-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> a ns2:giant ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> a ns2:gravity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> a ns2:intercontinental ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> a ns2:now ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> a ns2:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> a ns2:temporal-quantity ;
+    ns2:quant "4600000000" ;
+    ns2:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> a ns3:year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:cause-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:collapse-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:form-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:before a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:cloud a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:giant a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:intercontinental a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:molecule a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:now a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:temporal-quantity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:year a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_molecule_m a :AMR_Leaf ;
+    :edge_m_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_molecule ;
+    :hasVariable :variable_m .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_4600000000 a :AMR_Value ;
+    rdfs:label "4600000000" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+<https://tenet.tetras-libre.fr/extract-result#cloud> a owl:Class ;
+    rdfs:label "cloud" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "unknown" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> a ns11:collapse-01 ;
+    ns11:collapse-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> a ns2:cloud ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_before_b a :AMR_Leaf ;
+    :edge_b_n2 :leaf_now_n2 ;
+    :edge_b_t :leaf_temporal-quantity_t ;
+    :hasConcept :concept_before ;
+    :hasVariable :variable_b .
+
+:leaf_form-01_f a :AMR_Leaf ;
+    :edge_f_b :leaf_before_b ;
+    :edge_f_c :leaf_collapse-01_c ;
+    :edge_f_s :leaf_system_s ;
+    :hasConcept :concept_form-01 ;
+    :hasVariable :variable_f .
+
+:leaf_now_n2 a :AMR_Leaf ;
+    :hasConcept :concept_now ;
+    :hasVariable :variable_n2 .
+
+:leaf_temporal-quantity_t a :AMR_Leaf ;
+    :edge_t_quant_4600000000 :value_4600000000 ;
+    :edge_t_y :leaf_year_y ;
+    :hasConcept :concept_temporal-quantity ;
+    :hasVariable :variable_t .
+
+:leaf_year_y a :AMR_Leaf ;
+    :hasConcept :concept_year ;
+    :hasVariable :variable_y .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomProperty_cause_c3 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_collapse_c,
+        net:atomProperty_collapse_c ;
+    :role_ARG1 net:atomClass_gravity_g2 ;
+    net:coverBaseNode :leaf_cause-01_c3 ;
+    net:coverNode :leaf_cause-01_c3 ;
+    net:hasNaming "cause" ;
+    net:hasPropertyName "cause" ;
+    net:hasPropertyName01 "causeing" ;
+    net:hasPropertyName10 "cause-by" ;
+    net:hasPropertyName12 "cause-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_collapse-01_c,
+        :leaf_gravity_g2 .
+
+net:atomProperty_collapse_c a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_collapse-01_c ;
+    net:hasNaming "collapse" ;
+    net:hasPropertyName "collapse" ;
+    net:hasPropertyName01 "collapseing" ;
+    net:hasPropertyName10 "collapse-by" ;
+    net:hasPropertyName12 "collapse-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_cloud_c2 .
+
+net:compositeClass_giant-cloud_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:composeFrom net:atomClass_cloud_c2,
+        net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2,
+        :leaf_giant_g ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c2 ;
+    net:hasNaming "giant-cloud" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_intercontinental-cloud_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:composeFrom net:atomClass_cloud_c2,
+        net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2,
+        :leaf_intercontinental_ii ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c2 ;
+    net:hasNaming "intercontinental-cloud" ;
+    net:hasStructure "unknown" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_collapse_c a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:composeFrom net:atomProperty_collapse_c ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_collapse-01_c ;
+    net:hasClassName "collapse" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "collapse" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_gravity_g2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_gravity_g2 ;
+    net:coverNode :leaf_gravity_g2 ;
+    net:hasClassName "gravity" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravity" ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_cause-01_c3 a :AMR_Leaf ;
+    :edge_c3_c :leaf_collapse-01_c ;
+    :edge_c3_g2 :leaf_gravity_g2 ;
+    :hasConcept :concept_cause-01 ;
+    :hasVariable :variable_c3 .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_gravity_g2 a :AMR_Leaf ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g2 .
+
+:leaf_intercontinental_ii a :AMR_Leaf ;
+    :hasConcept :concept_intercontinental ;
+    :hasVariable :variable_ii .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_giant_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasClassName "giant" ;
+    net:hasNaming "giant" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_intercontinental_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_intercontinental_ii ;
+    net:coverNode :leaf_intercontinental_ii ;
+    net:hasClassName "intercontinental" ;
+    net:hasNaming "intercontinental" ;
+    net:hasStructure "unknown" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_cloud_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2 ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "unknown" .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_cloud_c2 a :AMR_Leaf ;
+    :edge_c2_g :leaf_giant_g ;
+    :edge_c2_ii :leaf_intercontinental_ii ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c2 .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_collapse-01_c a :AMR_Leaf ;
+    :edge_c_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_collapse-01 ;
+    :hasVariable :variable_c .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..047075642483e8297b437117f44925065b5f5e60
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1111 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:cause-01.ARG0 a ns11:FrameRole .
+
+ns11:cause-01.ARG1 a ns11:FrameRole .
+
+ns11:collapse-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG2 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns2:unit a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_b_n2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_t a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_c2_g a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c2_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c3_g2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_f_b a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_f_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_f_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_c2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_t_quant_4600000000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_y a :AMR_Edge ;
+    :hasRoleID "unit" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_cause-01_c3 a :AMR_Leaf ;
+    :edge_c3_c :leaf_collapse-01_c ;
+    :edge_c3_g2 :leaf_gravity_g2 ;
+    :hasConcept :concept_cause-01 ;
+    :hasVariable :variable_c3 .
+
+:leaf_molecule_m a :AMR_Leaf ;
+    :edge_m_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_molecule ;
+    :hasVariable :variable_m .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-04 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> ;
+    :hasRootLeaf :leaf_form-01_f ;
+    :hasSentenceID "WikiAbstract-SolarSystem-04" ;
+    :hasSentenceStatement "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> a ns11:cause-01 ;
+    ns11:cause-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns11:cause-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> a ns2:molecule ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-04" ;
+    ns3:has-sentence "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_before rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:before ;
+    :label "before" .
+
+:concept_cause-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:cause-01 ;
+    :label "cause-01" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:cloud ;
+    :label "cloud" .
+
+:concept_collapse-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:collapse-01 ;
+    :label "collapse-01" .
+
+:concept_form-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:form-01 ;
+    :label "form-01" .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:giant ;
+    :label "giant" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_intercontinental rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:intercontinental ;
+    :label "intercontinental" .
+
+:concept_molecule rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:molecule ;
+    :label "molecule" .
+
+:concept_now rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:now ;
+    :label "now" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:concept_temporal-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:temporal-quantity ;
+    :label "temporal-quantity" .
+
+:concept_year rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:year ;
+    :label "year" .
+
+:leaf_before_b a :AMR_Leaf ;
+    :edge_b_n2 :leaf_now_n2 ;
+    :edge_b_t :leaf_temporal-quantity_t ;
+    :hasConcept :concept_before ;
+    :hasVariable :variable_b .
+
+:leaf_form-01_f a :AMR_Leaf ;
+    :edge_f_b :leaf_before_b ;
+    :edge_f_c :leaf_collapse-01_c ;
+    :edge_f_s :leaf_system_s ;
+    :hasConcept :concept_form-01 ;
+    :hasVariable :variable_f .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_gravity_g2 a :AMR_Leaf ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g2 .
+
+:leaf_intercontinental_ii a :AMR_Leaf ;
+    :hasConcept :concept_intercontinental ;
+    :hasVariable :variable_ii .
+
+:leaf_now_n2 a :AMR_Leaf ;
+    :hasConcept :concept_now ;
+    :hasVariable :variable_n2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_temporal-quantity_t a :AMR_Leaf ;
+    :edge_t_quant_4600000000 :value_4600000000 ;
+    :edge_t_y :leaf_year_y ;
+    :hasConcept :concept_temporal-quantity ;
+    :hasVariable :variable_t .
+
+:leaf_year_y a :AMR_Leaf ;
+    :hasConcept :concept_year ;
+    :hasVariable :variable_y .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:value_4600000000 a :AMR_Value ;
+    rdfs:label "4600000000" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> ;
+    :label "c3" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> ;
+    :label "f" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> ;
+    :label "g" .
+
+:variable_g2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    :label "g2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> ;
+    :label "m" .
+
+:variable_n2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    :label "n2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    :label "t" .
+
+:variable_y a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    :label "y" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> a ns2:before ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> a ns11:form-01 ;
+    ns11:form-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    ns11:form-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> a ns2:giant ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> a ns2:gravity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> a ns2:intercontinental ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> a ns2:now ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> a ns2:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> a ns2:temporal-quantity ;
+    ns2:quant "4600000000" ;
+    ns2:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> a ns3:year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:cause-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:collapse-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:form-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:before a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:cloud a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:giant a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:intercontinental a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:molecule a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:now a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:temporal-quantity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:year a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_cloud_c2 a :AMR_Leaf ;
+    :edge_c2_g :leaf_giant_g ;
+    :edge_c2_ii :leaf_intercontinental_ii ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c2 .
+
+:leaf_collapse-01_c a :AMR_Leaf ;
+    :edge_c_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_collapse-01 ;
+    :hasVariable :variable_c .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> a ns11:collapse-01 ;
+    ns11:collapse-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> a ns2:cloud ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..0a48b96dc64047ed9d402929d01a1c7d6eba882c
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1369 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:cause-01.ARG0 a ns11:FrameRole .
+
+ns11:cause-01.ARG1 a ns11:FrameRole .
+
+ns11:collapse-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG2 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns2:unit a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_b_n2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_t a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_c2_g a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c2_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c3_g2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_f_b a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_f_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_f_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_c2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_t_quant_4600000000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_y a :AMR_Edge ;
+    :hasRoleID "unit" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-04 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> ;
+    :hasRootLeaf :leaf_form-01_f ;
+    :hasSentenceID "WikiAbstract-SolarSystem-04" ;
+    :hasSentenceStatement "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_before_b a net:Atom_Class_Net ;
+    :role_op1 net:atomClass_now_n2 ;
+    :role_quant net:atomClass_temporal-quantity_t ;
+    net:coverBaseNode :leaf_before_b ;
+    net:coverNode :leaf_before_b ;
+    net:hasClassName "before" ;
+    net:hasNaming "before" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_molecule_m a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_molecule_m ;
+    net:coverNode :leaf_molecule_m ;
+    net:hasClassName "molecule" ;
+    net:hasNaming "molecule" ;
+    net:hasStructure "unknown" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_form_f a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG2 net:atomClass_collapse_c,
+        net:atomProperty_collapse_c ;
+    net:coverBaseNode :leaf_form-01_f ;
+    net:coverNode :leaf_form-01_f ;
+    net:hasNaming "form" ;
+    net:hasPropertyName "form" ;
+    net:hasPropertyName01 "forming" ;
+    net:hasPropertyName10 "form-by" ;
+    net:hasPropertyName12 "form-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_collapse-01_c,
+        :leaf_system_s .
+
+net:atomProperty_year_y a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_year_y ;
+    net:coverNode :leaf_year_y ;
+    net:hasNaming "year" ;
+    net:hasPropertyName "year" ;
+    net:hasPropertyName01 "yearing" ;
+    net:hasPropertyName10 "year-by" ;
+    net:hasPropertyName12 "year-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_collapse-cause-gravity_c a net:Composite_Class_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:composeFrom net:atomClass_collapse_c,
+        net:atomClass_gravity_g2,
+        net:atomProperty_cause_c3 ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_cause-01_c3,
+        :leaf_collapse-01_c,
+        :leaf_gravity_g2 ;
+    net:hasMotherClassNet net:atomClass_collapse_c ;
+    net:hasNaming "collapse-cause-gravity" ;
+    net:hasRestriction net:restriction_cause-gravity_c3 ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_giant_g a net:Individual_Net ;
+    net:composeFrom net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "giant" ;
+    net:hasMotherClassNet net:atomClass_giant_g ;
+    net:hasNaming "giant" ;
+    net:hasStructure "unknown" .
+
+net:individual_intercontinental_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_intercontinental_ii ;
+    net:coverNode :leaf_intercontinental_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "intercontinental" ;
+    net:hasMotherClassNet net:atomClass_intercontinental_ii ;
+    net:hasNaming "intercontinental" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> a ns11:cause-01 ;
+    ns11:cause-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns11:cause-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> a ns2:molecule ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-04" ;
+    ns3:has-sentence "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_before rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:before ;
+    :label "before" .
+
+:concept_cause-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:cause-01 ;
+    :label "cause-01" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:cloud ;
+    :label "cloud" .
+
+:concept_collapse-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:collapse-01 ;
+    :label "collapse-01" .
+
+:concept_form-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:form-01 ;
+    :label "form-01" .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:giant ;
+    :label "giant" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_intercontinental rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:intercontinental ;
+    :label "intercontinental" .
+
+:concept_molecule rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:molecule ;
+    :label "molecule" .
+
+:concept_now rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:now ;
+    :label "now" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:concept_temporal-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:temporal-quantity ;
+    :label "temporal-quantity" .
+
+:concept_year rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:year ;
+    :label "year" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> ;
+    :label "c3" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> ;
+    :label "f" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> ;
+    :label "g" .
+
+:variable_g2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    :label "g2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> ;
+    :label "m" .
+
+:variable_n2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    :label "n2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    :label "t" .
+
+:variable_y a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    :label "y" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_now_n2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_now_n2 ;
+    net:coverNode :leaf_now_n2 ;
+    net:hasClassName "now" ;
+    net:hasNaming "now" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_temporal-quantity_t a net:Atom_Class_Net ;
+    :role_quant net:value_4600000000_blankNode ;
+    net:coverBaseNode :leaf_temporal-quantity_t ;
+    net:coverNode :leaf_temporal-quantity_t ;
+    net:hasClassName "temporal-quantity" ;
+    net:hasNaming "temporal-quantity" ;
+    net:hasStructure "unknown" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_cause-gravity_c3 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_gravity_g2,
+        net:atomProperty_cause_c3 ;
+    net:coverBaseNode :leaf_cause-01_c3 ;
+    net:coverNode :leaf_cause-01_c3,
+        :leaf_gravity_g2 ;
+    net:hasNaming "cause-gravity" ;
+    net:hasRestrictionNetValue net:atomClass_gravity_g2 ;
+    net:hasRestrictionOnProperty net:atomProperty_cause_c3 ;
+    net:hasStructure "unknown" .
+
+net:value_4600000000_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_4600000000 ;
+    net:hasNaming "4600000000" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "4600000000" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> a ns2:before ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> a ns11:form-01 ;
+    ns11:form-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    ns11:form-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> a ns2:giant ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> a ns2:gravity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> a ns2:intercontinental ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> a ns2:now ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> a ns2:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> a ns2:temporal-quantity ;
+    ns2:quant "4600000000" ;
+    ns2:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> a ns3:year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:cause-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:collapse-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:form-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:before a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:cloud a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:giant a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:intercontinental a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:molecule a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:now a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:temporal-quantity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:year a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_molecule_m a :AMR_Leaf ;
+    :edge_m_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_molecule ;
+    :hasVariable :variable_m .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_4600000000 a :AMR_Value ;
+    rdfs:label "4600000000" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "unknown" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> a ns11:collapse-01 ;
+    ns11:collapse-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> a ns2:cloud ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_before_b a :AMR_Leaf ;
+    :edge_b_n2 :leaf_now_n2 ;
+    :edge_b_t :leaf_temporal-quantity_t ;
+    :hasConcept :concept_before ;
+    :hasVariable :variable_b .
+
+:leaf_form-01_f a :AMR_Leaf ;
+    :edge_f_b :leaf_before_b ;
+    :edge_f_c :leaf_collapse-01_c ;
+    :edge_f_s :leaf_system_s ;
+    :hasConcept :concept_form-01 ;
+    :hasVariable :variable_f .
+
+:leaf_now_n2 a :AMR_Leaf ;
+    :hasConcept :concept_now ;
+    :hasVariable :variable_n2 .
+
+:leaf_temporal-quantity_t a :AMR_Leaf ;
+    :edge_t_quant_4600000000 :value_4600000000 ;
+    :edge_t_y :leaf_year_y ;
+    :hasConcept :concept_temporal-quantity ;
+    :hasVariable :variable_t .
+
+:leaf_year_y a :AMR_Leaf ;
+    :hasConcept :concept_year ;
+    :hasVariable :variable_y .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomProperty_cause_c3 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_collapse_c,
+        net:atomProperty_collapse_c ;
+    :role_ARG1 net:atomClass_gravity_g2 ;
+    net:coverBaseNode :leaf_cause-01_c3 ;
+    net:coverNode :leaf_cause-01_c3 ;
+    net:hasNaming "cause" ;
+    net:hasPropertyName "cause" ;
+    net:hasPropertyName01 "causeing" ;
+    net:hasPropertyName10 "cause-by" ;
+    net:hasPropertyName12 "cause-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_collapse-01_c,
+        :leaf_gravity_g2 .
+
+net:atomProperty_collapse_c a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_collapse-01_c ;
+    net:hasNaming "collapse" ;
+    net:hasPropertyName "collapse" ;
+    net:hasPropertyName01 "collapseing" ;
+    net:hasPropertyName10 "collapse-by" ;
+    net:hasPropertyName12 "collapse-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_cloud_c2 .
+
+net:compositeClass_giant-cloud_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:composeFrom net:atomClass_cloud_c2,
+        net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2,
+        :leaf_giant_g ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c2 ;
+    net:hasNaming "giant-cloud" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_intercontinental-cloud_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:composeFrom net:atomClass_cloud_c2,
+        net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2,
+        :leaf_intercontinental_ii ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c2 ;
+    net:hasNaming "intercontinental-cloud" ;
+    net:hasStructure "unknown" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_collapse_c a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:composeFrom net:atomProperty_collapse_c ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_collapse-01_c ;
+    net:hasClassName "collapse" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "collapse" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_gravity_g2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_gravity_g2 ;
+    net:coverNode :leaf_gravity_g2 ;
+    net:hasClassName "gravity" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravity" ;
+    net:hasStructure "unknown" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_cause-01_c3 a :AMR_Leaf ;
+    :edge_c3_c :leaf_collapse-01_c ;
+    :edge_c3_g2 :leaf_gravity_g2 ;
+    :hasConcept :concept_cause-01 ;
+    :hasVariable :variable_c3 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_gravity_g2 a :AMR_Leaf ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g2 .
+
+:leaf_intercontinental_ii a :AMR_Leaf ;
+    :hasConcept :concept_intercontinental ;
+    :hasVariable :variable_ii .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_giant_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasClassName "giant" ;
+    net:hasNaming "giant" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_intercontinental_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_intercontinental_ii ;
+    net:coverNode :leaf_intercontinental_ii ;
+    net:hasClassName "intercontinental" ;
+    net:hasNaming "intercontinental" ;
+    net:hasStructure "unknown" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_cloud_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2 ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "unknown" .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_cloud_c2 a :AMR_Leaf ;
+    :edge_c2_g :leaf_giant_g ;
+    :edge_c2_ii :leaf_intercontinental_ii ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c2 .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_collapse-01_c a :AMR_Leaf ;
+    :edge_c_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_collapse-01 ;
+    :hasVariable :variable_c .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..390d53b8b04e577058e78e8abb82c863897149c3
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,88 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#before> a owl:Class ;
+    rdfs:label "before" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#collapse-cause-gravity> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#cause> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#gravity> ],
+        <https://tenet.tetras-libre.fr/extract-result#collapse> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#form> a owl:ObjectProperty ;
+    rdfs:label "form" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#intercontinental-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#molecule> a owl:Class ;
+    rdfs:label "molecule" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#now> a owl:Class ;
+    rdfs:label "now" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#temporal-quantity> a owl:Class ;
+    rdfs:label "temporal-quantity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#year> a owl:ObjectProperty ;
+    rdfs:label "year" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#cause> a owl:ObjectProperty ;
+    rdfs:label "cause" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#collapse> a owl:Class ;
+    rdfs:label "collapse" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    rdfs:label "giant" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#gravity> a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#intercontinental> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#intercontinental> ;
+    rdfs:label "intercontinental" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#cloud> a owl:Class ;
+    rdfs:label "cloud" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..af7cdd4c18d725c48774ac57a1eaf70151c227cd
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1399 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:be-located-at-91.ARG1 a ns11:FrameRole .
+
+ns11:be-located-at-91.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:quant a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_b a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_c a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_b_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m2_v a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_m3_m4 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_m2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-05 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-05" ;
+    :hasSentenceStatement "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Jupiter" ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mass-be-sun> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#be> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#sun> ],
+        <https://tenet.tetras-libre.fr/extract-result#mass> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#system-hasPart-mass> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#mass> ],
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#vast-majority> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#majority> ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_remain_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_mass_m3 ;
+    net:coverBaseNode :leaf_remain-01_r ;
+    net:coverNode :leaf_remain-01_r ;
+    net:hasNaming "remain" ;
+    net:hasPropertyName "remain" ;
+    net:hasPropertyName01 "remaining" ;
+    net:hasPropertyName10 "remain-by" ;
+    net:hasPropertyName12 "remain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m3 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_mass-be-sun_m a net:Composite_Class_Net ;
+    :role_quant net:atomClass_majority_m2,
+        net:compositeClass_vast-majority_m2 ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomClass_sun_s2,
+        net:atomProperty_be_b ;
+    net:coverBaseNode :leaf_mass_m ;
+    net:coverNode :leaf_be-located-at-91_b,
+        :leaf_mass_m,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_mass_m ;
+    net:hasNaming "mass-be-sun" ;
+    net:hasRestriction net:restriction_be-sun_b ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_system-hasPart-mass_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_mass_m,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-mass" ;
+    net:hasRestriction net:restriction_hasPart-mass_p9 ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_vast_v a net:Individual_Net ;
+    net:composeFrom net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_vast_v ;
+    net:coverNode :leaf_vast_v ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "vast" ;
+    net:hasMotherClassNet net:atomClass_vast_v ;
+    net:hasNaming "vast" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_be_b ;
+    :role_op2 net:atomProperty_contain_c ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-05" ;
+    ns21:has-sentence "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> a ns3:system ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:be-located-at-91 ;
+    :label "be-located-at-91" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:contain-01 ;
+    :label "contain-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:concept_vast rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:vast ;
+    :label "vast" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    :label "c" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    :label "m4" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    :label "p" ;
+    :name "Jupiter" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    :label "s2" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    :label "v" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#be> a owl:ObjectProperty ;
+    rdfs:label "be" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#majority> a owl:Class ;
+    rdfs:label "majority" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#vast> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#vast> ;
+    rdfs:label "vast" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "unknown" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_majority_m4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_majority_m4 ;
+    net:coverNode :leaf_majority_m4 ;
+    net:hasClassName "majority" ;
+    net:hasNaming "majority" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_contain_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p,
+        net:individual_Jupiter_p ;
+    :role_ARG1 net:atomClass_mass_m3 ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m3,
+        :leaf_planet_p .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Jupiter_p a net:Individual_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Jupiter" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "unknown" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_be-sun_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_be_b ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b,
+        :leaf_sun_s2 ;
+    net:hasNaming "be-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_be_b ;
+    net:hasStructure "unknown" .
+
+net:restriction_hasPart-mass_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_mass_m ;
+    net:hasNaming "hasPart-mass" ;
+    net:hasRestrictionNetValue net:atomClass_mass_m ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> a ns11:be-located-at-91 ;
+    ns11:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    ns11:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> a ns3:majority ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> a ns3:majority ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> a ns3:vast ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:be-located-at-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:contain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:vast a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_majority rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:majority ;
+    :label "majority" .
+
+:concept_mass rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:mass ;
+    :label "mass" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_m3 :leaf_mass_m3 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+<https://tenet.tetras-libre.fr/extract-result#mass> a owl:Class ;
+    rdfs:label "mass" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "unknown" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_mass_m3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_majority_m4 ;
+    net:coverBaseNode :leaf_mass_m3 ;
+    net:coverNode :leaf_mass_m3 ;
+    net:hasClassName "mass" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "mass" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_vast-majority_m2 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_vast_v ;
+    net:composeFrom net:atomClass_majority_m2,
+        net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_majority_m2 ;
+    net:coverNode :leaf_majority_m2,
+        :leaf_vast_v ;
+    net:hasMotherClassNet net:atomClass_majority_m2 ;
+    net:hasNaming "vast-majority" ;
+    net:hasStructure "unknown" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Jupiter_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Jupiter ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Jupiter" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:majority a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mass a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_b :leaf_be-located-at-91_b ;
+    :edge_a_c :leaf_contain-01_c ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_m3 :leaf_mass_m3 ;
+    :edge_c_p :leaf_planet_p ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_majority_m4 a :AMR_Leaf ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m4 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_mass_m ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m,
+        :leaf_system_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_majority_m2 a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_majority_m2 ;
+    net:coverNode :leaf_majority_m2 ;
+    net:hasClassName "majority" ;
+    net:hasNaming "majority" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_be_b a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_mass_m ;
+    :role_ARG2 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b ;
+    net:hasNaming "be" ;
+    net:hasPropertyName "be" ;
+    net:hasPropertyName01 "being" ;
+    net:hasPropertyName10 "be-by" ;
+    net:hasPropertyName12 "be-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m,
+        :leaf_sun_s2 .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_m :leaf_mass_m ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_majority_m2 a :AMR_Leaf ;
+    :edge_m2_v :leaf_vast_v ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_vast_v a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_vast_v ;
+    net:coverNode :leaf_vast_v ;
+    net:hasClassName "vast" ;
+    net:hasNaming "vast" ;
+    net:hasStructure "unknown" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_m :leaf_mass_m ;
+    :edge_b_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_mass_m3 a :AMR_Leaf ;
+    :edge_m3_m4 :leaf_majority_m4 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m3 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_vast_v a :AMR_Leaf ;
+    :hasConcept :concept_vast ;
+    :hasVariable :variable_v .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_mass_m a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_majority_m2,
+        net:compositeClass_vast-majority_m2 ;
+    net:coverBaseNode :leaf_mass_m ;
+    net:coverNode :leaf_mass_m ;
+    net:hasClassName "mass" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "mass" ;
+    net:hasStructure "unknown" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_mass_m a :AMR_Leaf ;
+    :edge_m_m2 :leaf_majority_m2 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..140d900dbcdea0d2503f13033e4facb1694cf3fa
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1087 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:be-located-at-91.ARG1 a ns11:FrameRole .
+
+ns11:be-located-at-91.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:quant a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_b a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_c a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_b_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m2_v a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_m3_m4 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_m2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_m :leaf_mass_m ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_m3 :leaf_mass_m3 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-05 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-05" ;
+    :hasSentenceStatement "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-05" ;
+    ns21:has-sentence "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> a ns3:system ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:be-located-at-91 ;
+    :label "be-located-at-91" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:contain-01 ;
+    :label "contain-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:concept_vast rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:vast ;
+    :label "vast" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_b :leaf_be-located-at-91_b ;
+    :edge_a_c :leaf_contain-01_c ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_m :leaf_mass_m ;
+    :edge_b_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_m3 :leaf_mass_m3 ;
+    :edge_c_p :leaf_planet_p ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_majority_m2 a :AMR_Leaf ;
+    :edge_m2_v :leaf_vast_v ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m2 .
+
+:leaf_majority_m4 a :AMR_Leaf ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m4 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_vast_v a :AMR_Leaf ;
+    :hasConcept :concept_vast ;
+    :hasVariable :variable_v .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    :label "c" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    :label "m4" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    :label "p" ;
+    :name "Jupiter" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    :label "s2" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    :label "v" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> a ns11:be-located-at-91 ;
+    ns11:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    ns11:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> a ns3:majority ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> a ns3:majority ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> a ns3:vast ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:be-located-at-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:contain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:vast a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_majority rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:majority ;
+    :label "majority" .
+
+:concept_mass rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:mass ;
+    :label "mass" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_mass_m a :AMR_Leaf ;
+    :edge_m_m2 :leaf_majority_m2 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m .
+
+:leaf_mass_m3 a :AMR_Leaf ;
+    :edge_m3_m4 :leaf_majority_m4 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m3 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:majority a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mass a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2dd66dca8dbaadacc9bea76fd366e57097c87532
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1329 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:be-located-at-91.ARG1 a ns11:FrameRole .
+
+ns11:be-located-at-91.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:quant a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:edge_a_b a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_c a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_b_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m2_v a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_m3_m4 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_m2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-05 a :AMR_Value ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-05" ;
+    :hasSentenceStatement "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_remain_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_mass_m3 ;
+    net:coverBaseNode :leaf_remain-01_r ;
+    net:coverNode :leaf_remain-01_r ;
+    net:hasNaming "remain" ;
+    net:hasPropertyName "remain" ;
+    net:hasPropertyName01 "remaining" ;
+    net:hasPropertyName10 "remain-by" ;
+    net:hasPropertyName12 "remain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m3 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_mass-be-sun_m a net:Composite_Class_Net ;
+    :role_quant net:atomClass_majority_m2,
+        net:compositeClass_vast-majority_m2 ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomClass_sun_s2,
+        net:atomProperty_be_b ;
+    net:coverBaseNode :leaf_mass_m ;
+    net:coverNode :leaf_be-located-at-91_b,
+        :leaf_mass_m,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_mass_m ;
+    net:hasNaming "mass-be-sun" ;
+    net:hasRestriction net:restriction_be-sun_b ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_system-hasPart-mass_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_mass_m,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-mass" ;
+    net:hasRestriction net:restriction_hasPart-mass_p9 ;
+    net:hasStructure "unknown" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_vast_v a net:Individual_Net ;
+    net:composeFrom net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_vast_v ;
+    net:coverNode :leaf_vast_v ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "vast" ;
+    net:hasMotherClassNet net:atomClass_vast_v ;
+    net:hasNaming "vast" ;
+    net:hasStructure "unknown" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_be_b ;
+    :role_op2 net:atomProperty_contain_c ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "unknown" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-05" ;
+    ns21:has-sentence "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> a ns3:system ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:be-located-at-91 ;
+    :label "be-located-at-91" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:contain-01 ;
+    :label "contain-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:concept_vast rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:vast ;
+    :label "vast" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    :label "c" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    :label "m4" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    :label "p" ;
+    :name "Jupiter" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    :label "s2" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    :label "v" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_majority_m4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_majority_m4 ;
+    net:coverNode :leaf_majority_m4 ;
+    net:hasClassName "majority" ;
+    net:hasNaming "majority" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_contain_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p,
+        net:individual_Jupiter_p ;
+    :role_ARG1 net:atomClass_mass_m3 ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m3,
+        :leaf_planet_p .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Jupiter_p a net:Individual_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Jupiter" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "unknown" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_be-sun_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_be_b ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b,
+        :leaf_sun_s2 ;
+    net:hasNaming "be-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_be_b ;
+    net:hasStructure "unknown" .
+
+net:restriction_hasPart-mass_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_mass_m ;
+    net:hasNaming "hasPart-mass" ;
+    net:hasRestrictionNetValue net:atomClass_mass_m ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "unknown" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> a ns11:be-located-at-91 ;
+    ns11:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    ns11:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> a ns3:majority ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> a ns3:majority ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> a ns3:vast ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:be-located-at-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:contain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:vast a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_majority rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:majority ;
+    :label "majority" .
+
+:concept_mass rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:mass ;
+    :label "mass" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_m3 :leaf_mass_m3 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_mass_m3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_majority_m4 ;
+    net:coverBaseNode :leaf_mass_m3 ;
+    net:coverNode :leaf_mass_m3 ;
+    net:hasClassName "mass" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "mass" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "unknown" .
+
+net:compositeClass_vast-majority_m2 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_vast_v ;
+    net:composeFrom net:atomClass_majority_m2,
+        net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_majority_m2 ;
+    net:coverNode :leaf_majority_m2,
+        :leaf_vast_v ;
+    net:hasMotherClassNet net:atomClass_majority_m2 ;
+    net:hasNaming "vast-majority" ;
+    net:hasStructure "unknown" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Jupiter_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Jupiter ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "unknown" ;
+    net:hasValueLabel "Jupiter" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:majority a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mass a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_b :leaf_be-located-at-91_b ;
+    :edge_a_c :leaf_contain-01_c ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_m3 :leaf_mass_m3 ;
+    :edge_c_p :leaf_planet_p ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_majority_m4 a :AMR_Leaf ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m4 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_mass_m ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m,
+        :leaf_system_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_majority_m2 a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_majority_m2 ;
+    net:coverNode :leaf_majority_m2 ;
+    net:hasClassName "majority" ;
+    net:hasNaming "majority" ;
+    net:hasStructure "unknown" .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "unknown" .
+
+net:atomProperty_be_b a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_mass_m ;
+    :role_ARG2 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b ;
+    net:hasNaming "be" ;
+    net:hasPropertyName "be" ;
+    net:hasPropertyName01 "being" ;
+    net:hasPropertyName10 "be-by" ;
+    net:hasPropertyName12 "be-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "unknown" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m,
+        :leaf_sun_s2 .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_m :leaf_mass_m ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_majority_m2 a :AMR_Leaf ;
+    :edge_m2_v :leaf_vast_v ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_vast_v a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_vast_v ;
+    net:coverNode :leaf_vast_v ;
+    net:hasClassName "vast" ;
+    net:hasNaming "vast" ;
+    net:hasStructure "unknown" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_m :leaf_mass_m ;
+    :edge_b_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_mass_m3 a :AMR_Leaf ;
+    :edge_m3_m4 :leaf_majority_m4 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m3 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_vast_v a :AMR_Leaf ;
+    :hasConcept :concept_vast ;
+    :hasVariable :variable_v .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_mass_m a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_majority_m2,
+        net:compositeClass_vast-majority_m2 ;
+    net:coverBaseNode :leaf_mass_m ;
+    net:coverNode :leaf_mass_m ;
+    net:hasClassName "mass" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "mass" ;
+    net:hasStructure "unknown" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_mass_m a :AMR_Leaf ;
+    :edge_m_m2 :leaf_majority_m2 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..f4166a72dfc83c2cb689f8d3fc7b30ee14bf13e4
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230731/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,74 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Jupiter" ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mass-be-sun> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#be> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#sun> ],
+        <https://tenet.tetras-libre.fr/extract-result#mass> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#system-hasPart-mass> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#mass> ],
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#vast-majority> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#majority> ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#be> a owl:ObjectProperty ;
+    rdfs:label "be" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#majority> a owl:Class ;
+    rdfs:label "majority" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#vast> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#vast> ;
+    rdfs:label "vast" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "unknown" .
+
+<https://tenet.tetras-libre.fr/extract-result#mass> a owl:Class ;
+    rdfs:label "mass" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "unknown" .
+