The Compilation Process
The Compilation Process
Suppose the following simple class:
prefix owl: <http://www.w3.org/2002/07/owl#>;
prefix xsd: <http://www.w3.org/2001/XMLSchema#>;
prefix demo: <http://neno.lanl.gov/demo#>;
owl:Thing demo:Example {
xsd:integer t[0..1];
test(xsd:integer n) {
for(xsd:integer i=0; i < n; i++) {
this.t = this.t + 1;
}
}
}
This class compiles to the following OWL Ontology:
<http://neno.lanl.gov> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
<http://neno.lanl.gov/demo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
<http://neno.lanl.gov/demo> <http://www.w3.org/2002/07/owl#imports> <http://neno.lanl.gov> .
<http://neno.lanl.gov/demo#Example> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#Example> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2002/07/owl#Thing> .
<http://neno.lanl.gov/demo#t> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://neno.lanl.gov/demo#t> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#integer> .
<http://neno.lanl.gov/demo#t> <http://www.w3.org/2000/01/rdf-schema#domain> <http://neno.lanl.gov/demo#Example> .
<http://neno.lanl.gov/demo#Example> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A87e0e10bade24967b6e59b9c3c0db4e7 .
_:A87e0e10bade24967b6e59b9c3c0db4e7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A87e0e10bade24967b6e59b9c3c0db4e7 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasMethod> .
_:A87e0e10bade24967b6e59b9c3c0db4e7 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#130ec6a7-8f0a-4f49-adec-b399c849bb9b> .
<http://neno.lanl.gov/demo#130ec6a7-8f0a-4f49-adec-b399c849bb9b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#130ec6a7-8f0a-4f49-adec-b399c849bb9b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Method> .
<http://neno.lanl.gov/demo#130ec6a7-8f0a-4f49-adec-b399c849bb9b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ace4483b9f88d41f98f1982f556b60f12 .
_:Ace4483b9f88d41f98f1982f556b60f12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Ace4483b9f88d41f98f1982f556b60f12 <http://www.w3.org/2002/07/owl#hasValue> "test"^^<http://www.w3.org/2001/XMLSchema#string> .
_:Ace4483b9f88d41f98f1982f556b60f12 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasMethodName> .
<http://neno.lanl.gov/demo#130ec6a7-8f0a-4f49-adec-b399c849bb9b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A124f51ff3cd1420d81e9eba93190883d .
_:A124f51ff3cd1420d81e9eba93190883d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A124f51ff3cd1420d81e9eba93190883d <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasArgumentDescriptor> .
_:A124f51ff3cd1420d81e9eba93190883d <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#19631321-9cc1-47fc-811c-a2ae793e66d4> .
<http://neno.lanl.gov/demo#19631321-9cc1-47fc-811c-a2ae793e66d4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#19631321-9cc1-47fc-811c-a2ae793e66d4> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#ArgumentDescriptor> .
<http://neno.lanl.gov/demo#19631321-9cc1-47fc-811c-a2ae793e66d4> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A14bbea1f30844210b90dfbf75f11d619 .
_:A14bbea1f30844210b90dfbf75f11d619 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A14bbea1f30844210b90dfbf75f11d619 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#_a0> .
_:A14bbea1f30844210b90dfbf75f11d619 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#a841348d-ad96-4e02-a77e-88fec2d2b578> .
<http://neno.lanl.gov/demo#a841348d-ad96-4e02-a77e-88fec2d2b578> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#a841348d-ad96-4e02-a77e-88fec2d2b578> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Argument> .
<http://neno.lanl.gov/demo#a841348d-ad96-4e02-a77e-88fec2d2b578> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ad86ba194c8e74f939c2fe7f754e5aca6 .
<http://neno.lanl.gov/demo#a841348d-ad96-4e02-a77e-88fec2d2b578> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ad4ee0780ca4f4544b738e00c4a0a1826 .
_:Ad86ba194c8e74f939c2fe7f754e5aca6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Ad86ba194c8e74f939c2fe7f754e5aca6 <http://www.w3.org/2002/07/owl#hasValue> "n"^^<http://www.w3.org/2001/XMLSchema#string> .
_:Ad86ba194c8e74f939c2fe7f754e5aca6 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasSymbol> .
_:Ad4ee0780ca4f4544b738e00c4a0a1826 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Ad4ee0780ca4f4544b738e00c4a0a1826 <http://www.w3.org/2002/07/owl#hasValue> "http://www.w3.org/2001/XMLSchema#integer"^^<http://www.w3.org/2001/XMLSchema#anyURI> .
_:Ad4ee0780ca4f4544b738e00c4a0a1826 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasType> .
<http://neno.lanl.gov/demo#130ec6a7-8f0a-4f49-adec-b399c849bb9b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A98d260ce2f5e43f78834d8e15fd2f035 .
_:A98d260ce2f5e43f78834d8e15fd2f035 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A98d260ce2f5e43f78834d8e15fd2f035 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasBlock> .
_:A98d260ce2f5e43f78834d8e15fd2f035 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#b4eefa60-4921-4f28-a298-c8fa4a99b07f> .
<http://neno.lanl.gov/demo#b4eefa60-4921-4f28-a298-c8fa4a99b07f> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#b4eefa60-4921-4f28-a298-c8fa4a99b07f> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Block> .
<http://neno.lanl.gov/demo#b4eefa60-4921-4f28-a298-c8fa4a99b07f> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A4befa7b5870442ce86e495b70302710a .
_:A4befa7b5870442ce86e495b70302710a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A4befa7b5870442ce86e495b70302710a <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A4befa7b5870442ce86e495b70302710a <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#c3c4cef2-a307-4c32-9fd0-b6e877b77366> .
<http://neno.lanl.gov/demo#c3c4cef2-a307-4c32-9fd0-b6e877b77366> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#c3c4cef2-a307-4c32-9fd0-b6e877b77366> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Set> .
<http://neno.lanl.gov/demo#c3c4cef2-a307-4c32-9fd0-b6e877b77366> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A4bb57ec03063402b9c10e5c620ebb716 .
_:A4bb57ec03063402b9c10e5c620ebb716 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A4bb57ec03063402b9c10e5c620ebb716 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasLeft> .
_:A4bb57ec03063402b9c10e5c620ebb716 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#ebfe9d07-f370-4814-99a2-ed493ce21ac0> .
<http://neno.lanl.gov/demo#c3c4cef2-a307-4c32-9fd0-b6e877b77366> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aa49bb31e4fb84f80b22fbafea86229e5 .
_:Aa49bb31e4fb84f80b22fbafea86229e5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aa49bb31e4fb84f80b22fbafea86229e5 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasRight> .
_:Aa49bb31e4fb84f80b22fbafea86229e5 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#380fec68-c97b-4e5a-aaf6-a296532fa2aa> .
<http://neno.lanl.gov/demo#c3c4cef2-a307-4c32-9fd0-b6e877b77366> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aa184bf0c8f8e4c98a8c7c63b6c07b089 .
_:Aa184bf0c8f8e4c98a8c7c63b6c07b089 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aa184bf0c8f8e4c98a8c7c63b6c07b089 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:Aa184bf0c8f8e4c98a8c7c63b6c07b089 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#97e6a6f0-8a35-4f21-ad73-99604613d85e> .
<http://neno.lanl.gov/demo#ebfe9d07-f370-4814-99a2-ed493ce21ac0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#ebfe9d07-f370-4814-99a2-ed493ce21ac0> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#LocalVariable> .
<http://neno.lanl.gov/demo#ebfe9d07-f370-4814-99a2-ed493ce21ac0> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A128fe06c804848068ac6c33668a03b8f .
_:A128fe06c804848068ac6c33668a03b8f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A128fe06c804848068ac6c33668a03b8f <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasSymbol> .
_:A128fe06c804848068ac6c33668a03b8f <http://www.w3.org/2002/07/owl#hasValue> "n"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://neno.lanl.gov/demo#380fec68-c97b-4e5a-aaf6-a296532fa2aa> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#380fec68-c97b-4e5a-aaf6-a296532fa2aa> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PopLiteral> .
<http://neno.lanl.gov/demo#97e6a6f0-8a35-4f21-ad73-99604613d85e> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#97e6a6f0-8a35-4f21-ad73-99604613d85e> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Block> .
<http://neno.lanl.gov/demo#97e6a6f0-8a35-4f21-ad73-99604613d85e> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Af2b17aea32a248b6b2d9e9160e307492 .
_:Af2b17aea32a248b6b2d9e9160e307492 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Af2b17aea32a248b6b2d9e9160e307492 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:Af2b17aea32a248b6b2d9e9160e307492 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#9d4fa9d7-ecdc-48f8-b258-b08ad2594ef7> .
<http://neno.lanl.gov/demo#9d4fa9d7-ecdc-48f8-b258-b08ad2594ef7> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#9d4fa9d7-ecdc-48f8-b258-b08ad2594ef7> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PushValue> .
<http://neno.lanl.gov/demo#9d4fa9d7-ecdc-48f8-b258-b08ad2594ef7> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A98b08a287e9747998a1de559c6b4724b .
_:A98b08a287e9747998a1de559c6b4724b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A98b08a287e9747998a1de559c6b4724b <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasValue> .
_:A98b08a287e9747998a1de559c6b4724b <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#e4fd7858-4fca-4207-adf6-fc193c095a51> .
<http://neno.lanl.gov/demo#9d4fa9d7-ecdc-48f8-b258-b08ad2594ef7> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A006454b4339a43819c4dbe26f3dba4d2 .
_:A006454b4339a43819c4dbe26f3dba4d2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A006454b4339a43819c4dbe26f3dba4d2 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A006454b4339a43819c4dbe26f3dba4d2 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#2bf62b85-066b-48c4-b55f-845b932672ac> .
<http://neno.lanl.gov/demo#e4fd7858-4fca-4207-adf6-fc193c095a51> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#e4fd7858-4fca-4207-adf6-fc193c095a51> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#LocalDirect> .
<http://neno.lanl.gov/demo#e4fd7858-4fca-4207-adf6-fc193c095a51> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A2e3a7c80401249528647cfc536af5056 .
_:A2e3a7c80401249528647cfc536af5056 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A2e3a7c80401249528647cfc536af5056 <http://www.w3.org/2002/07/owl#hasValue> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
_:A2e3a7c80401249528647cfc536af5056 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasURI> .
<http://neno.lanl.gov/demo#2bf62b85-066b-48c4-b55f-845b932672ac> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#2bf62b85-066b-48c4-b55f-845b932672ac> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Set> .
<http://neno.lanl.gov/demo#2bf62b85-066b-48c4-b55f-845b932672ac> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ab5736c7ecd294bed899fc9fde5622c76 .
_:Ab5736c7ecd294bed899fc9fde5622c76 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Ab5736c7ecd294bed899fc9fde5622c76 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasLeft> .
_:Ab5736c7ecd294bed899fc9fde5622c76 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#429e4f90-9f7e-4795-aabb-b01368bd1f30> .
<http://neno.lanl.gov/demo#2bf62b85-066b-48c4-b55f-845b932672ac> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A20a9dae4a68843cd9462d0a2a78b14c7 .
_:A20a9dae4a68843cd9462d0a2a78b14c7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A20a9dae4a68843cd9462d0a2a78b14c7 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasRight> .
_:A20a9dae4a68843cd9462d0a2a78b14c7 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#01ec0083-02fe-4f1d-966b-b6dbb510a977> .
<http://neno.lanl.gov/demo#2bf62b85-066b-48c4-b55f-845b932672ac> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A91aac33d601844fc8032c91bd81315c9 .
_:A91aac33d601844fc8032c91bd81315c9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A91aac33d601844fc8032c91bd81315c9 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A91aac33d601844fc8032c91bd81315c9 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#0bec1aca-2547-4752-8a13-f4c77d04d1e8> .
<http://neno.lanl.gov/demo#429e4f90-9f7e-4795-aabb-b01368bd1f30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#429e4f90-9f7e-4795-aabb-b01368bd1f30> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#LocalVariable> .
<http://neno.lanl.gov/demo#429e4f90-9f7e-4795-aabb-b01368bd1f30> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aac09a6b0d2eb456b9cdae48927e240e7 .
_:Aac09a6b0d2eb456b9cdae48927e240e7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aac09a6b0d2eb456b9cdae48927e240e7 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasSymbol> .
_:Aac09a6b0d2eb456b9cdae48927e240e7 <http://www.w3.org/2002/07/owl#hasValue> "i"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://neno.lanl.gov/demo#01ec0083-02fe-4f1d-966b-b6dbb510a977> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#01ec0083-02fe-4f1d-966b-b6dbb510a977> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PopLiteral> .
<http://neno.lanl.gov/demo#0bec1aca-2547-4752-8a13-f4c77d04d1e8> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#0bec1aca-2547-4752-8a13-f4c77d04d1e8> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#LessThan> .
<http://neno.lanl.gov/demo#0bec1aca-2547-4752-8a13-f4c77d04d1e8> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A2c8cc8697f044909a77bcb4755effaa3 .
_:A2c8cc8697f044909a77bcb4755effaa3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A2c8cc8697f044909a77bcb4755effaa3 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasLeft> .
_:A2c8cc8697f044909a77bcb4755effaa3 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#429e4f90-9f7e-4795-aabb-b01368bd1f30> .
<http://neno.lanl.gov/demo#0bec1aca-2547-4752-8a13-f4c77d04d1e8> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A85a6521e861e4bf69d97845d6f71a556 .
_:A85a6521e861e4bf69d97845d6f71a556 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A85a6521e861e4bf69d97845d6f71a556 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasRight> .
_:A85a6521e861e4bf69d97845d6f71a556 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#ebfe9d07-f370-4814-99a2-ed493ce21ac0> .
<http://neno.lanl.gov/demo#0bec1aca-2547-4752-8a13-f4c77d04d1e8> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A6085fbe7083b41fc8c1bba0168b05830 .
_:A6085fbe7083b41fc8c1bba0168b05830 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A6085fbe7083b41fc8c1bba0168b05830 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A6085fbe7083b41fc8c1bba0168b05830 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#5e1fbb7d-a7bf-4527-96a2-bbdc0b0cdb24> .
<http://neno.lanl.gov/demo#5e1fbb7d-a7bf-4527-96a2-bbdc0b0cdb24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#5e1fbb7d-a7bf-4527-96a2-bbdc0b0cdb24> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Branch> .
<http://neno.lanl.gov/demo#5e1fbb7d-a7bf-4527-96a2-bbdc0b0cdb24> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A4f97120fba0b40848be39dc00e59a3c8 .
_:A4f97120fba0b40848be39dc00e59a3c8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A4f97120fba0b40848be39dc00e59a3c8 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasCondition> .
_:A4f97120fba0b40848be39dc00e59a3c8 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#4fab43e2-11a2-48b3-a5c8-ccb690505fe9> .
<http://neno.lanl.gov/demo#4fab43e2-11a2-48b3-a5c8-ccb690505fe9> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#4fab43e2-11a2-48b3-a5c8-ccb690505fe9> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PopLiteral> .
<http://neno.lanl.gov/demo#5e1fbb7d-a7bf-4527-96a2-bbdc0b0cdb24> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A49e2889772e34302a487a4eceae433be .
_:A49e2889772e34302a487a4eceae433be <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A49e2889772e34302a487a4eceae433be <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#trueInst> .
_:A49e2889772e34302a487a4eceae433be <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#a0c79c96-1692-49ad-908a-c5d50106dbf6> .
<http://neno.lanl.gov/demo#5e1fbb7d-a7bf-4527-96a2-bbdc0b0cdb24> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aa6caba87eefe43e787a8fdd2de402283 .
_:Aa6caba87eefe43e787a8fdd2de402283 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aa6caba87eefe43e787a8fdd2de402283 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#falseInst> .
_:Aa6caba87eefe43e787a8fdd2de402283 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#5c9d59df-919c-4f7f-b823-f0f5a48bbd37> .
<http://neno.lanl.gov/demo#a0c79c96-1692-49ad-908a-c5d50106dbf6> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#a0c79c96-1692-49ad-908a-c5d50106dbf6> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Block> .
<http://neno.lanl.gov/demo#a0c79c96-1692-49ad-908a-c5d50106dbf6> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aed128957c42544cc831783ac6a6e57f7 .
_:Aed128957c42544cc831783ac6a6e57f7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aed128957c42544cc831783ac6a6e57f7 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:Aed128957c42544cc831783ac6a6e57f7 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#9ef2dc10-e46b-4d68-bda6-c9d5165ef88f> .
<http://neno.lanl.gov/demo#9ef2dc10-e46b-4d68-bda6-c9d5165ef88f> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#9ef2dc10-e46b-4d68-bda6-c9d5165ef88f> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PushValue> .
<http://neno.lanl.gov/demo#9ef2dc10-e46b-4d68-bda6-c9d5165ef88f> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A9de7f4da857d44f090dfec74bc11f165 .
_:A9de7f4da857d44f090dfec74bc11f165 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A9de7f4da857d44f090dfec74bc11f165 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasValue> .
_:A9de7f4da857d44f090dfec74bc11f165 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#374f0ed1-b185-4d03-b922-e264b1914e6a> .
<http://neno.lanl.gov/demo#9ef2dc10-e46b-4d68-bda6-c9d5165ef88f> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A616e53e1c908452593eaaca0258d4dee .
_:A616e53e1c908452593eaaca0258d4dee <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A616e53e1c908452593eaaca0258d4dee <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A616e53e1c908452593eaaca0258d4dee <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#27ea5632-7eb0-45d9-b915-86ceeb2d4e00> .
<http://neno.lanl.gov/demo#374f0ed1-b185-4d03-b922-e264b1914e6a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#374f0ed1-b185-4d03-b922-e264b1914e6a> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#FieldVariable> .
<http://neno.lanl.gov/demo#374f0ed1-b185-4d03-b922-e264b1914e6a> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A7715ec1fac874110bcc7f0728d4d92e1 .
_:A7715ec1fac874110bcc7f0728d4d92e1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A7715ec1fac874110bcc7f0728d4d92e1 <http://www.w3.org/2002/07/owl#hasValue> "http://neno.lanl.gov/demo#t"^^<http://www.w3.org/2001/XMLSchema#anyURI> .
_:A7715ec1fac874110bcc7f0728d4d92e1 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasFieldProperty> .
<http://neno.lanl.gov/demo#374f0ed1-b185-4d03-b922-e264b1914e6a> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aa7a07571afbb4fafbb399b0bca5897ee .
_:Aa7a07571afbb4fafbb399b0bca5897ee <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aa7a07571afbb4fafbb399b0bca5897ee <http://www.w3.org/2002/07/owl#hasValue> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
_:Aa7a07571afbb4fafbb399b0bca5897ee <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#inverse> .
<http://neno.lanl.gov/demo#374f0ed1-b185-4d03-b922-e264b1914e6a> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A70a53ef812a241e1b049aaf5d7a3bebb .
_:A70a53ef812a241e1b049aaf5d7a3bebb <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A70a53ef812a241e1b049aaf5d7a3bebb <http://www.w3.org/2002/07/owl#hasValue> "0"^^<http://www.w3.org/2001/XMLSchema#int> .
_:A70a53ef812a241e1b049aaf5d7a3bebb <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#index> .
<http://neno.lanl.gov/demo#374f0ed1-b185-4d03-b922-e264b1914e6a> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A5a85fa8b8b8147329146898724e3c09b .
_:A5a85fa8b8b8147329146898724e3c09b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A5a85fa8b8b8147329146898724e3c09b <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasSymbol> .
_:A5a85fa8b8b8147329146898724e3c09b <http://www.w3.org/2002/07/owl#hasValue> "this"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://neno.lanl.gov/demo#374f0ed1-b185-4d03-b922-e264b1914e6a> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A4c299243e9f44d79bccf9f3b89f94cf1 .
_:A4c299243e9f44d79bccf9f3b89f94cf1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A4c299243e9f44d79bccf9f3b89f94cf1 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#fromBlock> .
_:A4c299243e9f44d79bccf9f3b89f94cf1 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#b4eefa60-4921-4f28-a298-c8fa4a99b07f> .
<http://neno.lanl.gov/demo#27ea5632-7eb0-45d9-b915-86ceeb2d4e00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#27ea5632-7eb0-45d9-b915-86ceeb2d4e00> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PushValue> .
<http://neno.lanl.gov/demo#27ea5632-7eb0-45d9-b915-86ceeb2d4e00> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A1821f50027f443da814997b2ec6c50e6 .
_:A1821f50027f443da814997b2ec6c50e6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A1821f50027f443da814997b2ec6c50e6 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasValue> .
_:A1821f50027f443da814997b2ec6c50e6 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#3318cca1-9569-46e0-90de-a225a6eed649> .
<http://neno.lanl.gov/demo#27ea5632-7eb0-45d9-b915-86ceeb2d4e00> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A22bf197f7361466abe62868bcf64eb8e .
_:A22bf197f7361466abe62868bcf64eb8e <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A22bf197f7361466abe62868bcf64eb8e <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A22bf197f7361466abe62868bcf64eb8e <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#e3a6ae38-02e1-4c8e-9869-bef3b3ea5612> .
<http://neno.lanl.gov/demo#3318cca1-9569-46e0-90de-a225a6eed649> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#3318cca1-9569-46e0-90de-a225a6eed649> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#LocalDirect> .
<http://neno.lanl.gov/demo#3318cca1-9569-46e0-90de-a225a6eed649> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aaa4f5ef7b3ed41b1a89084f363ee0b81 .
_:Aaa4f5ef7b3ed41b1a89084f363ee0b81 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aaa4f5ef7b3ed41b1a89084f363ee0b81 <http://www.w3.org/2002/07/owl#hasValue> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
_:Aaa4f5ef7b3ed41b1a89084f363ee0b81 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasURI> .
<http://neno.lanl.gov/demo#e3a6ae38-02e1-4c8e-9869-bef3b3ea5612> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#e3a6ae38-02e1-4c8e-9869-bef3b3ea5612> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Add> .
<http://neno.lanl.gov/demo#e3a6ae38-02e1-4c8e-9869-bef3b3ea5612> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A0133c0036753473191c6bda84bcbffea .
_:A0133c0036753473191c6bda84bcbffea <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A0133c0036753473191c6bda84bcbffea <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasLeft> .
_:A0133c0036753473191c6bda84bcbffea <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#19abcb23-2846-46b5-8b18-f45d5b8de61c> .
<http://neno.lanl.gov/demo#e3a6ae38-02e1-4c8e-9869-bef3b3ea5612> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A8d2e935d71fd4fafb5919dbebe2ff631 .
_:A8d2e935d71fd4fafb5919dbebe2ff631 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A8d2e935d71fd4fafb5919dbebe2ff631 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasRight> .
_:A8d2e935d71fd4fafb5919dbebe2ff631 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#78cef7e7-7ffc-4123-abbc-864730a509a1> .
<http://neno.lanl.gov/demo#e3a6ae38-02e1-4c8e-9869-bef3b3ea5612> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A44616c0df7a846febd37f65eb7f62bec .
_:A44616c0df7a846febd37f65eb7f62bec <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A44616c0df7a846febd37f65eb7f62bec <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A44616c0df7a846febd37f65eb7f62bec <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#51e03054-f224-4516-926f-8f3e196cb145> .
<http://neno.lanl.gov/demo#19abcb23-2846-46b5-8b18-f45d5b8de61c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#19abcb23-2846-46b5-8b18-f45d5b8de61c> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PopLiteral> .
<http://neno.lanl.gov/demo#78cef7e7-7ffc-4123-abbc-864730a509a1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#78cef7e7-7ffc-4123-abbc-864730a509a1> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PopLiteral> .
<http://neno.lanl.gov/demo#230d6919-eeaa-4e3e-b8bc-befcee14c75a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#230d6919-eeaa-4e3e-b8bc-befcee14c75a> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PopLiteral> .
<http://neno.lanl.gov/demo#51e03054-f224-4516-926f-8f3e196cb145> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#51e03054-f224-4516-926f-8f3e196cb145> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Set> .
<http://neno.lanl.gov/demo#51e03054-f224-4516-926f-8f3e196cb145> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A8d9ab06d631e4b728730eb9984db9080 .
_:A8d9ab06d631e4b728730eb9984db9080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A8d9ab06d631e4b728730eb9984db9080 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasLeft> .
_:A8d9ab06d631e4b728730eb9984db9080 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#d9b1c95b-e59b-46c7-8ed8-c95cb7f7751b> .
<http://neno.lanl.gov/demo#51e03054-f224-4516-926f-8f3e196cb145> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aa44887c3fbbb48779dcaab35b6b62782 .
_:Aa44887c3fbbb48779dcaab35b6b62782 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aa44887c3fbbb48779dcaab35b6b62782 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasRight> .
_:Aa44887c3fbbb48779dcaab35b6b62782 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#230d6919-eeaa-4e3e-b8bc-befcee14c75a> .
<http://neno.lanl.gov/demo#51e03054-f224-4516-926f-8f3e196cb145> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A511a69560cbb4b0f90a0aa4f0f37b0d3 .
_:A511a69560cbb4b0f90a0aa4f0f37b0d3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A511a69560cbb4b0f90a0aa4f0f37b0d3 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A511a69560cbb4b0f90a0aa4f0f37b0d3 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#2be82965-b0e9-491c-bc9e-f390ac2bb2f5> .
<http://neno.lanl.gov/demo#d9b1c95b-e59b-46c7-8ed8-c95cb7f7751b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#d9b1c95b-e59b-46c7-8ed8-c95cb7f7751b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#FieldVariable> .
<http://neno.lanl.gov/demo#d9b1c95b-e59b-46c7-8ed8-c95cb7f7751b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Af5bc014326c3479a8bbfebf67de8bdd3 .
_:Af5bc014326c3479a8bbfebf67de8bdd3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Af5bc014326c3479a8bbfebf67de8bdd3 <http://www.w3.org/2002/07/owl#hasValue> "http://neno.lanl.gov/demo#t"^^<http://www.w3.org/2001/XMLSchema#anyURI> .
_:Af5bc014326c3479a8bbfebf67de8bdd3 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasFieldProperty> .
<http://neno.lanl.gov/demo#d9b1c95b-e59b-46c7-8ed8-c95cb7f7751b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ac6ecf4c4eda8435cb1a0800959a00ad4 .
_:Ac6ecf4c4eda8435cb1a0800959a00ad4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Ac6ecf4c4eda8435cb1a0800959a00ad4 <http://www.w3.org/2002/07/owl#hasValue> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
_:Ac6ecf4c4eda8435cb1a0800959a00ad4 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#inverse> .
<http://neno.lanl.gov/demo#d9b1c95b-e59b-46c7-8ed8-c95cb7f7751b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Abe472c6153f44f10a6688aa64a1404fd .
_:Abe472c6153f44f10a6688aa64a1404fd <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Abe472c6153f44f10a6688aa64a1404fd <http://www.w3.org/2002/07/owl#hasValue> "0"^^<http://www.w3.org/2001/XMLSchema#int> .
_:Abe472c6153f44f10a6688aa64a1404fd <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#index> .
<http://neno.lanl.gov/demo#d9b1c95b-e59b-46c7-8ed8-c95cb7f7751b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aa639199fefb9432aa637edfb9e433ac0 .
_:Aa639199fefb9432aa637edfb9e433ac0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aa639199fefb9432aa637edfb9e433ac0 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasSymbol> .
_:Aa639199fefb9432aa637edfb9e433ac0 <http://www.w3.org/2002/07/owl#hasValue> "this"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://neno.lanl.gov/demo#d9b1c95b-e59b-46c7-8ed8-c95cb7f7751b> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ae50999cb17e040ce9b9fed92c9c38efa .
_:Ae50999cb17e040ce9b9fed92c9c38efa <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Ae50999cb17e040ce9b9fed92c9c38efa <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#fromBlock> .
_:Ae50999cb17e040ce9b9fed92c9c38efa <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#b4eefa60-4921-4f28-a298-c8fa4a99b07f> .
<http://neno.lanl.gov/demo#2be82965-b0e9-491c-bc9e-f390ac2bb2f5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#2be82965-b0e9-491c-bc9e-f390ac2bb2f5> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PushValue> .
<http://neno.lanl.gov/demo#2be82965-b0e9-491c-bc9e-f390ac2bb2f5> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A7b11e8378e174d91895ae99b5a97c879 .
_:A7b11e8378e174d91895ae99b5a97c879 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A7b11e8378e174d91895ae99b5a97c879 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasValue> .
_:A7b11e8378e174d91895ae99b5a97c879 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#429e4f90-9f7e-4795-aabb-b01368bd1f30> .
<http://neno.lanl.gov/demo#2be82965-b0e9-491c-bc9e-f390ac2bb2f5> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ae2deac0b7eef414e8b42b6752becfa77 .
_:Ae2deac0b7eef414e8b42b6752becfa77 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Ae2deac0b7eef414e8b42b6752becfa77 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:Ae2deac0b7eef414e8b42b6752becfa77 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#2271ea72-877c-4090-9f89-ab44785a4a05> .
<http://neno.lanl.gov/demo#2271ea72-877c-4090-9f89-ab44785a4a05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#2271ea72-877c-4090-9f89-ab44785a4a05> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PushValue> .
<http://neno.lanl.gov/demo#2271ea72-877c-4090-9f89-ab44785a4a05> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A79232355263140d4a1a292b57bb7eb74 .
_:A79232355263140d4a1a292b57bb7eb74 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A79232355263140d4a1a292b57bb7eb74 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasValue> .
_:A79232355263140d4a1a292b57bb7eb74 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#9792cc3c-5600-4660-bc1f-b8f508ece8d7> .
<http://neno.lanl.gov/demo#2271ea72-877c-4090-9f89-ab44785a4a05> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ab4143eb2cdcc4b79994bce182448732f .
_:Ab4143eb2cdcc4b79994bce182448732f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Ab4143eb2cdcc4b79994bce182448732f <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:Ab4143eb2cdcc4b79994bce182448732f <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#a80ba54c-5344-4df1-91a0-bb66f074139d> .
<http://neno.lanl.gov/demo#9792cc3c-5600-4660-bc1f-b8f508ece8d7> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#9792cc3c-5600-4660-bc1f-b8f508ece8d7> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#LocalDirect> .
<http://neno.lanl.gov/demo#9792cc3c-5600-4660-bc1f-b8f508ece8d7> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A94b8910d95ab4c3481eca964177df913 .
_:A94b8910d95ab4c3481eca964177df913 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A94b8910d95ab4c3481eca964177df913 <http://www.w3.org/2002/07/owl#hasValue> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
_:A94b8910d95ab4c3481eca964177df913 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasURI> .
<http://neno.lanl.gov/demo#a80ba54c-5344-4df1-91a0-bb66f074139d> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#a80ba54c-5344-4df1-91a0-bb66f074139d> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Add> .
<http://neno.lanl.gov/demo#a80ba54c-5344-4df1-91a0-bb66f074139d> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A8f91d0bf6c7e4648b4ebe7edf28844cd .
_:A8f91d0bf6c7e4648b4ebe7edf28844cd <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A8f91d0bf6c7e4648b4ebe7edf28844cd <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasLeft> .
_:A8f91d0bf6c7e4648b4ebe7edf28844cd <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#4c715d16-b6e6-41c6-9173-ba365f1274cb> .
<http://neno.lanl.gov/demo#a80ba54c-5344-4df1-91a0-bb66f074139d> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Aca1d3ac1208d4097b483b26c998e04e7 .
_:Aca1d3ac1208d4097b483b26c998e04e7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Aca1d3ac1208d4097b483b26c998e04e7 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasRight> .
_:Aca1d3ac1208d4097b483b26c998e04e7 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#fdde7f6f-b9c0-4002-92d7-b69d20161c6e> .
<http://neno.lanl.gov/demo#a80ba54c-5344-4df1-91a0-bb66f074139d> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Af8bc6a43f82344dca946d72783bd326d .
_:Af8bc6a43f82344dca946d72783bd326d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Af8bc6a43f82344dca946d72783bd326d <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:Af8bc6a43f82344dca946d72783bd326d <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#e3b8a797-849b-44f3-a7a0-f2f86d0d1aa5> .
<http://neno.lanl.gov/demo#4c715d16-b6e6-41c6-9173-ba365f1274cb> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#4c715d16-b6e6-41c6-9173-ba365f1274cb> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PopLiteral> .
<http://neno.lanl.gov/demo#fdde7f6f-b9c0-4002-92d7-b69d20161c6e> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#fdde7f6f-b9c0-4002-92d7-b69d20161c6e> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PopLiteral> .
<http://neno.lanl.gov/demo#e3b8a797-849b-44f3-a7a0-f2f86d0d1aa5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#e3b8a797-849b-44f3-a7a0-f2f86d0d1aa5> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Set> .
<http://neno.lanl.gov/demo#e3b8a797-849b-44f3-a7a0-f2f86d0d1aa5> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A4e3002216e2444cc85478cade99b826d .
_:A4e3002216e2444cc85478cade99b826d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A4e3002216e2444cc85478cade99b826d <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasLeft> .
_:A4e3002216e2444cc85478cade99b826d <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#429e4f90-9f7e-4795-aabb-b01368bd1f30> .
<http://neno.lanl.gov/demo#e3b8a797-849b-44f3-a7a0-f2f86d0d1aa5> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ac9a8c573b84d4493b758fac7d83cd3ed .
_:Ac9a8c573b84d4493b758fac7d83cd3ed <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:Ac9a8c573b84d4493b758fac7d83cd3ed <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#hasRight> .
_:Ac9a8c573b84d4493b758fac7d83cd3ed <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#019c1fbe-a2f5-4a28-8940-99f860179caf> .
<http://neno.lanl.gov/demo#e3b8a797-849b-44f3-a7a0-f2f86d0d1aa5> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A10af5f43f46345e8a276e46bafdd20fa .
_:A10af5f43f46345e8a276e46bafdd20fa <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A10af5f43f46345e8a276e46bafdd20fa <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A10af5f43f46345e8a276e46bafdd20fa <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#84d6dc02-6f95-4248-b3ce-ec8a72aa3974> .
<http://neno.lanl.gov/demo#019c1fbe-a2f5-4a28-8940-99f860179caf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#019c1fbe-a2f5-4a28-8940-99f860179caf> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#PopLiteral> .
<http://neno.lanl.gov/demo#84d6dc02-6f95-4248-b3ce-ec8a72aa3974> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#84d6dc02-6f95-4248-b3ce-ec8a72aa3974> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#ExitBlock> .
<http://neno.lanl.gov/demo#84d6dc02-6f95-4248-b3ce-ec8a72aa3974> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A6e78e96c56294c1d8b5fdbec3e9d02dc .
_:A6e78e96c56294c1d8b5fdbec3e9d02dc <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A6e78e96c56294c1d8b5fdbec3e9d02dc <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#blockEnter> .
_:A6e78e96c56294c1d8b5fdbec3e9d02dc <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#a0c79c96-1692-49ad-908a-c5d50106dbf6> .
<http://neno.lanl.gov/demo#84d6dc02-6f95-4248-b3ce-ec8a72aa3974> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A5a7b2cb0abe34d4da410ea0eb945bbf6 .
_:A5a7b2cb0abe34d4da410ea0eb945bbf6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A5a7b2cb0abe34d4da410ea0eb945bbf6 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A5a7b2cb0abe34d4da410ea0eb945bbf6 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#0bec1aca-2547-4752-8a13-f4c77d04d1e8> .
<http://neno.lanl.gov/demo#5c9d59df-919c-4f7f-b823-f0f5a48bbd37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#5c9d59df-919c-4f7f-b823-f0f5a48bbd37> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#ExitBlock> .
<http://neno.lanl.gov/demo#5c9d59df-919c-4f7f-b823-f0f5a48bbd37> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A010d01c68de04ba6b7a6e102dfc7fc70 .
_:A010d01c68de04ba6b7a6e102dfc7fc70 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A010d01c68de04ba6b7a6e102dfc7fc70 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#blockEnter> .
_:A010d01c68de04ba6b7a6e102dfc7fc70 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#9d4fa9d7-ecdc-48f8-b258-b08ad2594ef7> .
<http://neno.lanl.gov/demo#5c9d59df-919c-4f7f-b823-f0f5a48bbd37> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A36cca7bc33f74889b3178e25c88969cb .
_:A36cca7bc33f74889b3178e25c88969cb <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A36cca7bc33f74889b3178e25c88969cb <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#nextInst> .
_:A36cca7bc33f74889b3178e25c88969cb <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#7981d62c-793c-4d98-9e8d-8002e1310b4a> .
<http://neno.lanl.gov/demo#7981d62c-793c-4d98-9e8d-8002e1310b4a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://neno.lanl.gov/demo#7981d62c-793c-4d98-9e8d-8002e1310b4a> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://neno.lanl.gov#Return> .
<http://neno.lanl.gov/demo#7981d62c-793c-4d98-9e8d-8002e1310b4a> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:A54178529b46d4e69a3e19a29848a6717 .
_:A54178529b46d4e69a3e19a29848a6717 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:A54178529b46d4e69a3e19a29848a6717 <http://www.w3.org/2002/07/owl#onProperty> <http://neno.lanl.gov#blockEnter> .
_:A54178529b46d4e69a3e19a29848a6717 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://neno.lanl.gov/demo#b4eefa60-4921-4f28-a298-c8fa4a99b07f> .
Tuesday, October 2, 2007